@wyw-in-js/parcel-transformer 2.0.0-alpha.0 → 2.0.0-alpha.1
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 +9 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -14,3 +14,12 @@ Prepend `@wyw-in-js/parcel-transformer` to the default JS pipeline in `.parcelrc
|
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
```
|
|
17
|
+
|
|
18
|
+
## Eval resolver modes
|
|
19
|
+
|
|
20
|
+
`eval.resolver: 'native'` and the native step of `eval.resolver: 'hybrid'` use `oxc-resolver` with automatic
|
|
21
|
+
`tsconfig.json` discovery.
|
|
22
|
+
|
|
23
|
+
Parcel aliases and resolver plugins are resolved only by the bundler fallback. Use `hybrid` when evaluated imports rely on
|
|
24
|
+
Parcel resolver behavior. Use `native` only when `oxc-resolver` can resolve all evaluated imports, or mirror Parcel-only
|
|
25
|
+
aliases in `oxcOptions.resolver.alias`.
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wyw-in-js/parcel-transformer",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@parcel/plugin": "^2.16.3",
|
|
7
7
|
"@parcel/source-map": "^2.1.1",
|
|
8
|
-
"@wyw-in-js/shared": "2.0.0-alpha.
|
|
9
|
-
"@wyw-in-js/transform": "2.0.0-alpha.
|
|
8
|
+
"@wyw-in-js/shared": "2.0.0-alpha.1",
|
|
9
|
+
"@wyw-in-js/transform": "2.0.0-alpha.1"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@types/node": "^22.0.0",
|