@codepress/codepress-engine 0.9.3 → 0.9.4-dev.add-github-workflow-runs-to-terminal.20260408055533
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.js.map +1 -1
- package/dist/babel/module-graph.js +1 -3
- package/dist/babel/module-graph.js.map +1 -1
- package/dist/babel/provenance.js.map +1 -1
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/dist/vite-plugin.d.ts +103 -0
- package/dist/vite-plugin.js +221 -0
- package/dist/vite-plugin.js.map +1 -0
- package/dist/webpack-plugin.d.ts +47 -0
- package/dist/webpack-plugin.js +318 -42
- package/dist/webpack-plugin.js.map +1 -1
- package/package.json +28 -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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codepress/codepress-engine",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4-dev.add-github-workflow-runs-to-terminal.20260408055533",
|
|
4
4
|
"description": "CodePress engine - Babel and SWC plug-ins",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -40,6 +40,11 @@
|
|
|
40
40
|
"require": "./dist/webpack-plugin.js",
|
|
41
41
|
"default": "./dist/webpack-plugin.js"
|
|
42
42
|
},
|
|
43
|
+
"./vite-plugin": {
|
|
44
|
+
"types": "./src/vite-plugin.ts",
|
|
45
|
+
"require": "./dist/vite-plugin.js",
|
|
46
|
+
"default": "./dist/vite-plugin.js"
|
|
47
|
+
},
|
|
43
48
|
"./refresh-provider": {
|
|
44
49
|
"types": "./src/CPRefreshProvider.tsx",
|
|
45
50
|
"require": "./dist/CPRefreshProvider.js",
|
|
@@ -89,6 +94,11 @@
|
|
|
89
94
|
"require": "./dist/webpack-plugin.js",
|
|
90
95
|
"default": "./dist/webpack-plugin.js"
|
|
91
96
|
},
|
|
97
|
+
"./vite-plugin": {
|
|
98
|
+
"types": "./dist/vite-plugin.d.ts",
|
|
99
|
+
"require": "./dist/vite-plugin.js",
|
|
100
|
+
"default": "./dist/vite-plugin.js"
|
|
101
|
+
},
|
|
92
102
|
"./refresh-provider": {
|
|
93
103
|
"types": "./dist/CPRefreshProvider.d.ts",
|
|
94
104
|
"require": "./dist/CPRefreshProvider.js",
|
|
@@ -118,6 +128,7 @@
|
|
|
118
128
|
"test:parity": "npm run build && jest test/plugin-parity.test.js test/fixtures.test.js",
|
|
119
129
|
"test:babel": "npm run build && jest test/plugin-parity.test.js",
|
|
120
130
|
"test:fixtures": "npm run build && jest test/fixtures.test.js",
|
|
131
|
+
"test:integration": "npm run build && jest --config integration/jest.config.js",
|
|
121
132
|
"lint": "oxlint . && cargo clippy --manifest-path codepress-swc-plugin/Cargo.toml --target wasm32-wasip1 -- -D warnings",
|
|
122
133
|
"format": "prettier --write . && cargo fmt --manifest-path codepress-swc-plugin/Cargo.toml",
|
|
123
134
|
"format:check": "prettier --check . && cargo fmt --manifest-path codepress-swc-plugin/Cargo.toml --check",
|
|
@@ -137,7 +148,7 @@
|
|
|
137
148
|
"codepress"
|
|
138
149
|
],
|
|
139
150
|
"author": "",
|
|
140
|
-
"license": "
|
|
151
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
141
152
|
"repository": {
|
|
142
153
|
"type": "git",
|
|
143
154
|
"url": "git+https://github.com/quantfive/codepress-engine.git"
|
|
@@ -155,33 +166,28 @@
|
|
|
155
166
|
}
|
|
156
167
|
},
|
|
157
168
|
"devDependencies": {
|
|
158
|
-
"@babel/
|
|
159
|
-
"@babel/
|
|
160
|
-
"@babel/
|
|
161
|
-
"@babel/preset-
|
|
162
|
-
"@
|
|
163
|
-
"@babel/preset-typescript": "^7.26.0",
|
|
164
|
-
"@swc/core": "^1.15.3",
|
|
165
|
-
"@swc/wasm": "^1",
|
|
169
|
+
"@babel/core": "^7.29.0",
|
|
170
|
+
"@babel/plugin-syntax-jsx": "^7.28.6",
|
|
171
|
+
"@babel/preset-env": "^7.29.2",
|
|
172
|
+
"@babel/preset-react": "^7.28.5",
|
|
173
|
+
"@swc/core": "^1.15.21",
|
|
166
174
|
"@types/babel__core": "^7.20.5",
|
|
167
175
|
"@types/jest": "^30.0.0",
|
|
168
|
-
"@types/node": "^22.
|
|
169
|
-
"@types/react": "^19.
|
|
170
|
-
"@types/node-fetch": "^2.6.11",
|
|
176
|
+
"@types/node": "^22.19.15",
|
|
177
|
+
"@types/react": "^19.2.14",
|
|
171
178
|
"@types/webpack": "^5.28.5",
|
|
172
179
|
"babel-jest": "^30.2.0",
|
|
173
|
-
"esbuild": "^0.24.
|
|
180
|
+
"esbuild": "^0.24.2",
|
|
174
181
|
"jest": "^30.2.0",
|
|
175
|
-
"supertest": "^7.
|
|
176
|
-
"ts-jest": "^29.
|
|
177
|
-
"typescript": "^5.
|
|
182
|
+
"supertest": "^7.2.2",
|
|
183
|
+
"ts-jest": "^29.4.6",
|
|
184
|
+
"typescript": "^5.9.3"
|
|
178
185
|
},
|
|
179
186
|
"dependencies": {
|
|
180
|
-
"@fastify/cors": "^11.0
|
|
181
|
-
"fastify": "^5.
|
|
182
|
-
"node-fetch": "^2.
|
|
187
|
+
"@fastify/cors": "^11.2.0",
|
|
188
|
+
"fastify": "^5.8.4",
|
|
189
|
+
"node-fetch": "^2.7.0",
|
|
183
190
|
"prettier": "^3.8.1",
|
|
184
|
-
"tsconfig-paths": "^4.2.0"
|
|
185
|
-
"ws": "^8.18.0"
|
|
191
|
+
"tsconfig-paths": "^4.2.0"
|
|
186
192
|
}
|
|
187
193
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|