@utoo/pack 1.3.11 → 1.4.0-alpha.0
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/config_schema.json +27 -0
- package/package.json +9 -9
package/config_schema.json
CHANGED
|
@@ -1412,6 +1412,17 @@
|
|
|
1412
1412
|
"string",
|
|
1413
1413
|
"null"
|
|
1414
1414
|
]
|
|
1415
|
+
},
|
|
1416
|
+
"type": {
|
|
1417
|
+
"description": "Optional configured module type (`type` / `moduleType`).",
|
|
1418
|
+
"anyOf": [
|
|
1419
|
+
{
|
|
1420
|
+
"$ref": "#/definitions/SchemaTurbopackModuleType"
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"type": "null"
|
|
1424
|
+
}
|
|
1425
|
+
]
|
|
1415
1426
|
}
|
|
1416
1427
|
}
|
|
1417
1428
|
},
|
|
@@ -1506,6 +1517,22 @@
|
|
|
1506
1517
|
}
|
|
1507
1518
|
}
|
|
1508
1519
|
]
|
|
1520
|
+
},
|
|
1521
|
+
"SchemaTurbopackModuleType": {
|
|
1522
|
+
"description": "Module type for a module rule (`type` / `moduleType` field).\n\nValues must match pack-core / Turbopack's `ConfiguredModuleType::parse()`.",
|
|
1523
|
+
"type": "string",
|
|
1524
|
+
"enum": [
|
|
1525
|
+
"asset",
|
|
1526
|
+
"ecmascript",
|
|
1527
|
+
"typescript",
|
|
1528
|
+
"css",
|
|
1529
|
+
"css-module",
|
|
1530
|
+
"json",
|
|
1531
|
+
"wasm",
|
|
1532
|
+
"raw",
|
|
1533
|
+
"node",
|
|
1534
|
+
"bytes"
|
|
1535
|
+
]
|
|
1509
1536
|
}
|
|
1510
1537
|
}
|
|
1511
1538
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@utoo/pack",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0-alpha.0",
|
|
4
4
|
"main": "cjs/index.js",
|
|
5
5
|
"module": "esm/index.js",
|
|
6
6
|
"types": "esm/index.d.ts",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@hono/node-server": "^1.19.11",
|
|
42
42
|
"@hono/node-ws": "^1.3.0",
|
|
43
43
|
"@swc/helpers": "0.5.15",
|
|
44
|
-
"@utoo/pack-shared": "1.
|
|
44
|
+
"@utoo/pack-shared": "1.4.0-alpha.0",
|
|
45
45
|
"domparser-rs": "^0.0.7",
|
|
46
46
|
"find-up": "4.1.0",
|
|
47
47
|
"get-port": "5.1.1",
|
|
@@ -92,12 +92,12 @@
|
|
|
92
92
|
},
|
|
93
93
|
"repository": "git@github.com:utooland/utoo.git",
|
|
94
94
|
"optionalDependencies": {
|
|
95
|
-
"@utoo/pack-darwin-arm64": "1.
|
|
96
|
-
"@utoo/pack-darwin-x64": "1.
|
|
97
|
-
"@utoo/pack-linux-arm64-gnu": "1.
|
|
98
|
-
"@utoo/pack-linux-arm64-musl": "1.
|
|
99
|
-
"@utoo/pack-linux-x64-gnu": "1.
|
|
100
|
-
"@utoo/pack-linux-x64-musl": "1.
|
|
101
|
-
"@utoo/pack-win32-x64-msvc": "1.
|
|
95
|
+
"@utoo/pack-darwin-arm64": "1.4.0-alpha.0",
|
|
96
|
+
"@utoo/pack-darwin-x64": "1.4.0-alpha.0",
|
|
97
|
+
"@utoo/pack-linux-arm64-gnu": "1.4.0-alpha.0",
|
|
98
|
+
"@utoo/pack-linux-arm64-musl": "1.4.0-alpha.0",
|
|
99
|
+
"@utoo/pack-linux-x64-gnu": "1.4.0-alpha.0",
|
|
100
|
+
"@utoo/pack-linux-x64-musl": "1.4.0-alpha.0",
|
|
101
|
+
"@utoo/pack-win32-x64-msvc": "1.4.0-alpha.0"
|
|
102
102
|
}
|
|
103
103
|
}
|