@utoo/pack 1.3.12-alpha.0 → 1.4.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.
Files changed (2) hide show
  1. package/config_schema.json +35 -1
  2. package/package.json +9 -9
@@ -1303,6 +1303,13 @@
1303
1303
  "null"
1304
1304
  ]
1305
1305
  },
1306
+ "absoluteSourceFilename": {
1307
+ "description": "Keep React dev source filenames as absolute disk paths for editor integrations",
1308
+ "type": [
1309
+ "boolean",
1310
+ "null"
1311
+ ]
1312
+ },
1306
1313
  "runtime": {
1307
1314
  "description": "JSX runtime to use (automatic or classic)",
1308
1315
  "type": [
@@ -1412,6 +1419,17 @@
1412
1419
  "string",
1413
1420
  "null"
1414
1421
  ]
1422
+ },
1423
+ "type": {
1424
+ "description": "Optional configured module type (`type` / `moduleType`).",
1425
+ "anyOf": [
1426
+ {
1427
+ "$ref": "#/definitions/SchemaTurbopackModuleType"
1428
+ },
1429
+ {
1430
+ "type": "null"
1431
+ }
1432
+ ]
1415
1433
  }
1416
1434
  }
1417
1435
  },
@@ -1506,6 +1524,22 @@
1506
1524
  }
1507
1525
  }
1508
1526
  ]
1527
+ },
1528
+ "SchemaTurbopackModuleType": {
1529
+ "description": "Module type for a module rule (`type` / `moduleType` field).\n\nValues must match pack-core / Turbopack's `ConfiguredModuleType::parse()`.",
1530
+ "type": "string",
1531
+ "enum": [
1532
+ "asset",
1533
+ "ecmascript",
1534
+ "typescript",
1535
+ "css",
1536
+ "css-module",
1537
+ "json",
1538
+ "wasm",
1539
+ "raw",
1540
+ "node",
1541
+ "bytes"
1542
+ ]
1509
1543
  }
1510
1544
  }
1511
- }
1545
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/pack",
3
- "version": "1.3.12-alpha.0",
3
+ "version": "1.4.0-alpha.1",
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.3.12-alpha.0",
44
+ "@utoo/pack-shared": "1.4.0-alpha.1",
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.3.12-alpha.0",
96
- "@utoo/pack-darwin-x64": "1.3.12-alpha.0",
97
- "@utoo/pack-linux-arm64-gnu": "1.3.12-alpha.0",
98
- "@utoo/pack-linux-arm64-musl": "1.3.12-alpha.0",
99
- "@utoo/pack-linux-x64-gnu": "1.3.12-alpha.0",
100
- "@utoo/pack-linux-x64-musl": "1.3.12-alpha.0",
101
- "@utoo/pack-win32-x64-msvc": "1.3.12-alpha.0"
95
+ "@utoo/pack-darwin-arm64": "1.4.0-alpha.1",
96
+ "@utoo/pack-darwin-x64": "1.4.0-alpha.1",
97
+ "@utoo/pack-linux-arm64-gnu": "1.4.0-alpha.1",
98
+ "@utoo/pack-linux-arm64-musl": "1.4.0-alpha.1",
99
+ "@utoo/pack-linux-x64-gnu": "1.4.0-alpha.1",
100
+ "@utoo/pack-linux-x64-musl": "1.4.0-alpha.1",
101
+ "@utoo/pack-win32-x64-msvc": "1.4.0-alpha.1"
102
102
  }
103
103
  }