Skip to content

Commit 44effcb

Browse files
committed
chore: remove process.stderr.write in core path
1 parent c6d2f05 commit 44effcb

File tree

12 files changed

+3425
-4140
lines changed

12 files changed

+3425
-4140
lines changed

.changeset/clever-dingos-cry.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@masknet/stego-js': patch
3+
---
4+
5+
remove process.stderr.write in core path

.changeset/shy-pants-grab.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@masknet/stego-js': minor
3+
---
4+
5+
now Node.js 18 is required for CLI because we upgraded meow

.eslintrc.json

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/lint.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ jobs:
2121
registry: true
2222
- run: pnpm install
2323
- run: npx tsc --noEmit
24-
- run: pnpm run lint
2524
- run: pnpm test

.prettierrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
"trailingComma": "all",
33
"printWidth": 120,
44
"semi": false,
5-
"singleQuote": true,
6-
"jsxBracketSameLine": true
5+
"singleQuote": true
76
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"editor.formatOnSave": true,
33
"editor.codeActionsOnSave": {
4-
"source.fixAll": true
4+
"source.fixAll": "explicit"
55
},
66
"cSpell.words": ["stego", "unshuffle"]
77
}

package.json

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@masknet/stego-js",
33
"version": "0.14.2",
4-
"packageManager": "pnpm@7.13.2",
4+
"packageManager": "pnpm@9.12.2",
55
"type": "module",
66
"description": "Steganography, based on frequency domain implemented in JavaScript.",
77
"repository": "https://github.com/DimensionDev/Stego-JS",
@@ -17,35 +17,28 @@
1717
"build:dist": "tsc -b ./tsconfig.json ./tests/tsconfig.json",
1818
"watch:tsc": "tsc -b ./tsconfig.json ./tests/tsconfig.json -w",
1919
"build:umd": "rollup -c",
20-
"ci-build": "pnpm run lint && pnpm test && pnpm run build",
21-
"lint": "eslint . --ext .ts,.tsx",
20+
"ci-build": "pnpm test && pnpm run build",
2221
"test": "vitest",
2322
"release": "pnpm run build && npx changeset publish"
2423
},
2524
"dependencies": {
2625
"@rgba-image/lanczos": "^0.1.0",
27-
"meow": "^10.1.5"
26+
"meow": "^13.2.0"
2827
},
2928
"devDependencies": {
3029
"@changesets/cli": "^2.24.4",
3130
"@napi-rs/image": "^1.4.0",
32-
"@rollup/plugin-replace": "^4.0.0",
33-
"@swc/core": "^1.3.6",
34-
"@types/node": "^18.8.3",
31+
"@rollup/plugin-replace": "^6.0.1",
32+
"@swc/core": "^1.7.39",
33+
"@types/node": "^22.7.9",
3534
"@types/offscreencanvas": "^2019.7.0",
36-
"@typescript-eslint/eslint-plugin": "^5.39.0",
37-
"@typescript-eslint/parser": "^5.39.0",
38-
"eslint": "^8.25.0",
39-
"eslint-config-prettier": "^8.5.0",
40-
"eslint-plugin-import": "^2.22.1",
41-
"eslint-plugin-prettier": "^4.2.1",
4235
"jest": "^29.1.2",
43-
"jest-file-snapshot": "^0.5.0",
44-
"prettier": "^2.7.1",
45-
"rollup": "^2.79.1",
46-
"rollup-plugin-swc3": "^0.6.0",
47-
"typescript": "^4.8.4",
48-
"vitest": "^0.24.0"
36+
"jest-file-snapshot": "^0.7.0",
37+
"prettier": "^3.3.3",
38+
"rollup": "^4.24.0",
39+
"rollup-plugin-swc3": "^0.12.1",
40+
"typescript": "^5.6.3",
41+
"vitest": "^2.1.3"
4942
},
5043
"optionalDependencies": {
5144
"@napi-rs/image": "^1.4.0"

0 commit comments

Comments
 (0)