@codepress/codepress-engine 0.9.1 → 0.9.2-dev.piccoloman-stricter-types.20260220180409
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/CPRefreshProvider.d.ts +1 -1
- package/dist/CPRefreshProvider.js +5 -6
- package/dist/CPRefreshProvider.js.map +1 -1
- package/dist/babel/module-graph.d.ts +3 -3
- package/dist/babel/module-graph.js +65 -63
- package/dist/babel/module-graph.js.map +1 -1
- package/dist/babel/provenance.d.ts +13 -13
- package/dist/babel/provenance.js +134 -131
- package/dist/babel/provenance.js.map +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/esbuild-plugin.d.ts +1 -1
- package/dist/esbuild-plugin.js +26 -22
- package/dist/esbuild-plugin.js.map +1 -1
- package/dist/index.js +19 -9
- package/dist/index.js.map +1 -1
- package/dist/server.js +2 -2
- package/dist/server.js.map +1 -1
- package/dist/swc/index.js.map +1 -1
- package/dist/webpack-plugin.js +6 -2
- package/dist/webpack-plugin.js.map +1 -1
- package/package.json +8 -22
- package/swc/codepress_engine.v0_82_87.wasm +0 -0
- package/swc/codepress_engine.v26.wasm +0 -0
- package/swc/codepress_engine.v42.wasm +0 -0
- package/swc/codepress_engine.v48.wasm +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codepress/codepress-engine",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"packageManager": "pnpm@10.22.0",
|
|
3
|
+
"version": "0.9.2-dev.piccoloman-stricter-types.20260220180409",
|
|
5
4
|
"description": "CodePress engine - Babel and SWC plug-ins",
|
|
6
5
|
"main": "./dist/index.js",
|
|
7
6
|
"types": "./dist/index.d.ts",
|
|
@@ -69,8 +68,11 @@
|
|
|
69
68
|
"test:parity": "npm run build && jest test/plugin-parity.test.js test/fixtures.test.js",
|
|
70
69
|
"test:babel": "npm run build && jest test/plugin-parity.test.js",
|
|
71
70
|
"test:fixtures": "npm run build && jest test/fixtures.test.js",
|
|
72
|
-
"lint": "
|
|
73
|
-
"
|
|
71
|
+
"lint": "oxlint . && cargo clippy --manifest-path codepress-swc-plugin/Cargo.toml --target wasm32-wasip1 -- -D warnings",
|
|
72
|
+
"format": "prettier --write . && cargo fmt --manifest-path codepress-swc-plugin/Cargo.toml",
|
|
73
|
+
"format:check": "prettier --check . && cargo fmt --manifest-path codepress-swc-plugin/Cargo.toml --check",
|
|
74
|
+
"typecheck": "tsc --noEmit && cargo check --manifest-path codepress-swc-plugin/Cargo.toml --target wasm32-wasip1",
|
|
75
|
+
"lint:fix": "oxlint . --fix && cargo clippy --manifest-path codepress-swc-plugin/Cargo.toml --target wasm32-wasip1 --fix --allow-dirty -- -D warnings",
|
|
74
76
|
"dev:link": "npm run build && npm run build:rust && npm link",
|
|
75
77
|
"prepublishOnly": "npm run build && npm run build:rust",
|
|
76
78
|
"version:patch": "npm version patch",
|
|
@@ -112,8 +114,6 @@
|
|
|
112
114
|
"@babel/preset-env": "^7.26.0",
|
|
113
115
|
"@babel/preset-react": "^7.26.3",
|
|
114
116
|
"@babel/preset-typescript": "^7.26.0",
|
|
115
|
-
"@eslint/eslintrc": "^3.3.1",
|
|
116
|
-
"@eslint/js": "^9.37.0",
|
|
117
117
|
"@swc/core": "^1.15.3",
|
|
118
118
|
"@swc/wasm": "^1",
|
|
119
119
|
"@types/babel__core": "^7.20.5",
|
|
@@ -124,31 +124,17 @@
|
|
|
124
124
|
"@types/webpack": "^5.28.5",
|
|
125
125
|
"babel-jest": "^30.2.0",
|
|
126
126
|
"esbuild": "^0.24.0",
|
|
127
|
-
"eslint": "^9.37.0",
|
|
128
|
-
"eslint-config-prettier": "^10.1.8",
|
|
129
|
-
"eslint-plugin-import": "^2.32.0",
|
|
130
|
-
"eslint-plugin-jsdoc": "^61.1.2",
|
|
131
|
-
"eslint-plugin-node": "^11.1.0",
|
|
132
|
-
"eslint-plugin-prettier": "^5.5.4",
|
|
133
|
-
"eslint-plugin-promise": "^7.2.1",
|
|
134
|
-
"eslint-plugin-unused-imports": "^4.2.0",
|
|
135
127
|
"jest": "^30.2.0",
|
|
136
128
|
"supertest": "^7.1.4",
|
|
137
129
|
"ts-jest": "^29.2.5",
|
|
138
|
-
"typescript": "^5.6.3"
|
|
139
|
-
"typescript-eslint": "^8.46.1"
|
|
130
|
+
"typescript": "^5.6.3"
|
|
140
131
|
},
|
|
141
132
|
"dependencies": {
|
|
142
133
|
"@fastify/cors": "^11.0.1",
|
|
143
134
|
"fastify": "^5.3.3",
|
|
144
135
|
"node-fetch": "^2.6.7",
|
|
145
|
-
"prettier": "^3.1
|
|
136
|
+
"prettier": "^3.8.1",
|
|
146
137
|
"tsconfig-paths": "^4.2.0",
|
|
147
138
|
"ws": "^8.18.0"
|
|
148
|
-
},
|
|
149
|
-
"pnpm": {
|
|
150
|
-
"onlyBuiltDependencies": [
|
|
151
|
-
"unrs-resolver"
|
|
152
|
-
]
|
|
153
139
|
}
|
|
154
140
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|