@codepress/codepress-engine 0.10.6 → 0.10.7
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/README.md
CHANGED
|
@@ -114,13 +114,13 @@ Entry points exposed by the package:
|
|
|
114
114
|
|
|
115
115
|
## Project layout
|
|
116
116
|
|
|
117
|
-
| Path | Details
|
|
118
|
-
| ----------------- |
|
|
119
|
-
| `src/` | TypeScript sources for the Babel plugin, CLI, dev server, and utils
|
|
120
|
-
| `dist/` | Compiled JavaScript + declaration files (`npm run build`)
|
|
121
|
-
| `babel/` | Lightweight proxy that re-exports the compiled Babel plugin
|
|
122
|
-
| `swc/` | WASM binaries (`wasm-v42`, `wasm-v26`, `wasm-v0_82_87`) and plugin entry |
|
|
123
|
-
| `tests/`, `test/` | Jest suites covering Babel, SWC, and server helpers
|
|
117
|
+
| Path | Details |
|
|
118
|
+
| ----------------- | ------------------------------------------------------------------------------------------ |
|
|
119
|
+
| `src/` | TypeScript sources for the Babel plugin, CLI, dev server, and utils |
|
|
120
|
+
| `dist/` | Compiled JavaScript + declaration files (`npm run build`) |
|
|
121
|
+
| `babel/` | Lightweight proxy that re-exports the compiled Babel plugin |
|
|
122
|
+
| `swc/` | WASM binaries (`wasm-v42`, `wasm-turbopack`, `wasm-v26`, `wasm-v0_82_87`) and plugin entry |
|
|
123
|
+
| `tests/`, `test/` | Jest suites covering Babel, SWC, and server helpers |
|
|
124
124
|
|
|
125
125
|
---
|
|
126
126
|
|
|
@@ -184,15 +184,16 @@ The server performs git-aware writes and enriches responses with repository meta
|
|
|
184
184
|
|
|
185
185
|
## SWC package exports and WASM selection
|
|
186
186
|
|
|
187
|
-
| Export
|
|
188
|
-
|
|
|
189
|
-
| `./swc`
|
|
190
|
-
| `./swc/wasm`
|
|
191
|
-
| `./swc/wasm-v42`
|
|
192
|
-
| `./swc/wasm-
|
|
193
|
-
| `./swc/wasm-
|
|
187
|
+
| Export | Target |
|
|
188
|
+
| ---------------------- | --------------------------------------- |
|
|
189
|
+
| `./swc` | `./dist/swc/index.js` |
|
|
190
|
+
| `./swc/wasm` | `./swc/codepress_engine.v42.wasm` |
|
|
191
|
+
| `./swc/wasm-v42` | `./swc/codepress_engine.v42.wasm` |
|
|
192
|
+
| `./swc/wasm-turbopack` | `./swc/codepress_engine.turbopack.wasm` |
|
|
193
|
+
| `./swc/wasm-v26` | `./swc/codepress_engine.v26.wasm` |
|
|
194
|
+
| `./swc/wasm-v0_82_87` | `./swc/codepress_engine.v0_82_87.wasm` |
|
|
194
195
|
|
|
195
|
-
The helper automatically selects the correct WASM binary based on detected Next.js / `@swc/core` versions. Override detection with `CODEPRESS_SWC_WASM=<package specifier>` or `CODEPRESS_SWC_ABI_BAND=<v42|v26|v0_82_87>`.
|
|
196
|
+
The helper automatically selects the correct WASM binary based on detected Next.js / `@swc/core` versions and uses the dedicated Turbopack binary for Next.js 15.5+. Override detection with `CODEPRESS_SWC_WASM=<package specifier>` or `CODEPRESS_SWC_ABI_BAND=<v42|turbopack|v26|v0_82_87>`.
|
|
196
197
|
|
|
197
198
|
---
|
|
198
199
|
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|