@utoo/pack 1.4.13 → 1.4.14
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 +79 -11
- package/package.json +9 -9
package/config_schema.json
CHANGED
|
@@ -169,6 +169,17 @@
|
|
|
169
169
|
}
|
|
170
170
|
]
|
|
171
171
|
},
|
|
172
|
+
"server": {
|
|
173
|
+
"description": "Server-side configuration",
|
|
174
|
+
"anyOf": [
|
|
175
|
+
{
|
|
176
|
+
"$ref": "#/definitions/SchemaServerConfig"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"type": "null"
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
},
|
|
172
183
|
"sourceMaps": {
|
|
173
184
|
"description": "Enable source maps",
|
|
174
185
|
"type": [
|
|
@@ -530,6 +541,19 @@
|
|
|
530
541
|
"use-credentials"
|
|
531
542
|
]
|
|
532
543
|
},
|
|
544
|
+
"SchemaCssModulesConfig": {
|
|
545
|
+
"description": "CSS Modules configuration",
|
|
546
|
+
"type": "object",
|
|
547
|
+
"properties": {
|
|
548
|
+
"localIdentName": {
|
|
549
|
+
"description": "CSS Modules local class name pattern",
|
|
550
|
+
"type": [
|
|
551
|
+
"string",
|
|
552
|
+
"null"
|
|
553
|
+
]
|
|
554
|
+
}
|
|
555
|
+
}
|
|
556
|
+
},
|
|
533
557
|
"SchemaDevServer": {
|
|
534
558
|
"description": "Development server configuration",
|
|
535
559
|
"type": "object",
|
|
@@ -1392,13 +1416,6 @@
|
|
|
1392
1416
|
"null"
|
|
1393
1417
|
]
|
|
1394
1418
|
},
|
|
1395
|
-
"absoluteSourceFilename": {
|
|
1396
|
-
"description": "Keep React dev source filenames as absolute disk paths for editor integrations",
|
|
1397
|
-
"type": [
|
|
1398
|
-
"boolean",
|
|
1399
|
-
"null"
|
|
1400
|
-
]
|
|
1401
|
-
},
|
|
1402
1419
|
"runtime": {
|
|
1403
1420
|
"description": "JSX runtime to use (automatic or classic)",
|
|
1404
1421
|
"type": [
|
|
@@ -1478,9 +1495,6 @@
|
|
|
1478
1495
|
"SchemaRuleConfigItem": {
|
|
1479
1496
|
"description": "Full module rule configuration",
|
|
1480
1497
|
"type": "object",
|
|
1481
|
-
"required": [
|
|
1482
|
-
"loaders"
|
|
1483
|
-
],
|
|
1484
1498
|
"properties": {
|
|
1485
1499
|
"condition": {
|
|
1486
1500
|
"description": "Condition for applying the rule",
|
|
@@ -1522,6 +1536,49 @@
|
|
|
1522
1536
|
}
|
|
1523
1537
|
}
|
|
1524
1538
|
},
|
|
1539
|
+
"SchemaServerConfig": {
|
|
1540
|
+
"description": "Server-side configuration",
|
|
1541
|
+
"type": "object",
|
|
1542
|
+
"properties": {
|
|
1543
|
+
"entry": {
|
|
1544
|
+
"description": "Entry point for the server runtime (e.g. \"src/server.ts\")",
|
|
1545
|
+
"type": [
|
|
1546
|
+
"string",
|
|
1547
|
+
"null"
|
|
1548
|
+
]
|
|
1549
|
+
},
|
|
1550
|
+
"function": {
|
|
1551
|
+
"description": "Configuration for Server Functions (RPC) boundaries",
|
|
1552
|
+
"anyOf": [
|
|
1553
|
+
{
|
|
1554
|
+
"$ref": "#/definitions/SchemaServerFunctionConfig"
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"type": "null"
|
|
1558
|
+
}
|
|
1559
|
+
]
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
"SchemaServerFunctionConfig": {
|
|
1564
|
+
"type": "object",
|
|
1565
|
+
"properties": {
|
|
1566
|
+
"clientProxy": {
|
|
1567
|
+
"description": "Module that exports createServerReference(actionId, name) for client proxy",
|
|
1568
|
+
"type": [
|
|
1569
|
+
"string",
|
|
1570
|
+
"null"
|
|
1571
|
+
]
|
|
1572
|
+
},
|
|
1573
|
+
"serverRegister": {
|
|
1574
|
+
"description": "Module that exports registerServerReference(action, actionId, name) for the server bundle",
|
|
1575
|
+
"type": [
|
|
1576
|
+
"string",
|
|
1577
|
+
"null"
|
|
1578
|
+
]
|
|
1579
|
+
}
|
|
1580
|
+
}
|
|
1581
|
+
},
|
|
1525
1582
|
"SchemaSplitChunkConfig": {
|
|
1526
1583
|
"description": "Split chunk configuration",
|
|
1527
1584
|
"type": "object",
|
|
@@ -1560,6 +1617,17 @@
|
|
|
1560
1617
|
"null"
|
|
1561
1618
|
]
|
|
1562
1619
|
},
|
|
1620
|
+
"cssModules": {
|
|
1621
|
+
"description": "CSS Modules configuration",
|
|
1622
|
+
"anyOf": [
|
|
1623
|
+
{
|
|
1624
|
+
"$ref": "#/definitions/SchemaCssModulesConfig"
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"type": "null"
|
|
1628
|
+
}
|
|
1629
|
+
]
|
|
1630
|
+
},
|
|
1563
1631
|
"emotion": {
|
|
1564
1632
|
"description": "Enable @emotion/react transform support with boolean or options",
|
|
1565
1633
|
"anyOf": [
|
|
@@ -1631,4 +1699,4 @@
|
|
|
1631
1699
|
]
|
|
1632
1700
|
}
|
|
1633
1701
|
}
|
|
1634
|
-
}
|
|
1702
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@utoo/pack",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.14",
|
|
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.4.
|
|
44
|
+
"@utoo/pack-shared": "1.4.14",
|
|
45
45
|
"domparser-rs": "^0.0.7",
|
|
46
46
|
"find-up": "4.1.0",
|
|
47
47
|
"get-port": "5.1.1",
|
|
@@ -96,12 +96,12 @@
|
|
|
96
96
|
"directory": "packages/pack"
|
|
97
97
|
},
|
|
98
98
|
"optionalDependencies": {
|
|
99
|
-
"@utoo/pack-darwin-arm64": "1.4.
|
|
100
|
-
"@utoo/pack-darwin-x64": "1.4.
|
|
101
|
-
"@utoo/pack-linux-arm64-gnu": "1.4.
|
|
102
|
-
"@utoo/pack-linux-arm64-musl": "1.4.
|
|
103
|
-
"@utoo/pack-linux-x64-gnu": "1.4.
|
|
104
|
-
"@utoo/pack-linux-x64-musl": "1.4.
|
|
105
|
-
"@utoo/pack-win32-x64-msvc": "1.4.
|
|
99
|
+
"@utoo/pack-darwin-arm64": "1.4.14",
|
|
100
|
+
"@utoo/pack-darwin-x64": "1.4.14",
|
|
101
|
+
"@utoo/pack-linux-arm64-gnu": "1.4.14",
|
|
102
|
+
"@utoo/pack-linux-arm64-musl": "1.4.14",
|
|
103
|
+
"@utoo/pack-linux-x64-gnu": "1.4.14",
|
|
104
|
+
"@utoo/pack-linux-x64-musl": "1.4.14",
|
|
105
|
+
"@utoo/pack-win32-x64-msvc": "1.4.14"
|
|
106
106
|
}
|
|
107
107
|
}
|