@pwrs/mappa 0.0.4 → 0.0.6
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/mappa.d.ts +4 -0
- package/dist/mappa.wasm +0 -0
- package/package.json +7 -7
package/dist/mappa.d.ts
CHANGED
|
@@ -21,6 +21,10 @@ export interface ResolveOptions {
|
|
|
21
21
|
inputMap?: ImportMap;
|
|
22
22
|
/** Optimization level: 0=none, 1=simplify+dedup (default: 1) */
|
|
23
23
|
optimize?: 0 | 1;
|
|
24
|
+
/** Rebase workspace paths relative to this directory (node_modules paths unaffected) */
|
|
25
|
+
pathBase?: string;
|
|
26
|
+
/** Limit dependency resolution to this package's dependencies */
|
|
27
|
+
packageDeps?: string;
|
|
24
28
|
}
|
|
25
29
|
export interface ImportMap {
|
|
26
30
|
imports?: Record<string, string>;
|
package/dist/mappa.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pwrs/mappa",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Generate ES module import maps from package.json",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "GPL-3.0-or-later",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"test": "node --experimental-strip-types --test test/mappa.test.ts"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@pwrs/mappa-linux-x64": "0.0.
|
|
27
|
-
"@pwrs/mappa-linux-arm64": "0.0.
|
|
28
|
-
"@pwrs/mappa-darwin-x64": "0.0.
|
|
29
|
-
"@pwrs/mappa-darwin-arm64": "0.0.
|
|
30
|
-
"@pwrs/mappa-win32-x64": "0.0.
|
|
31
|
-
"@pwrs/mappa-win32-arm64": "0.0.
|
|
26
|
+
"@pwrs/mappa-linux-x64": "0.0.6",
|
|
27
|
+
"@pwrs/mappa-linux-arm64": "0.0.6",
|
|
28
|
+
"@pwrs/mappa-darwin-x64": "0.0.6",
|
|
29
|
+
"@pwrs/mappa-darwin-arm64": "0.0.6",
|
|
30
|
+
"@pwrs/mappa-win32-x64": "0.0.6",
|
|
31
|
+
"@pwrs/mappa-win32-arm64": "0.0.6"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"dist/mappa.js",
|