@utoo/pack 1.3.5-alpha.3 → 1.3.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.
Files changed (2) hide show
  1. package/config_schema.json +30 -0
  2. package/package.json +9 -9
@@ -500,6 +500,25 @@
500
500
  }
501
501
  ]
502
502
  },
503
+ "SchemaCrossOriginLoading": {
504
+ "description": "Webpack-compatible `output.crossOriginLoading`. Supports `false`, `\"anonymous\"`, and `\"use-credentials\"`.",
505
+ "anyOf": [
506
+ {
507
+ "type": "boolean"
508
+ },
509
+ {
510
+ "$ref": "#/definitions/SchemaCrossOriginLoadingMode"
511
+ }
512
+ ]
513
+ },
514
+ "SchemaCrossOriginLoadingMode": {
515
+ "description": "Cross-origin loading mode for dynamic chunks.",
516
+ "type": "string",
517
+ "enum": [
518
+ "anonymous",
519
+ "use-credentials"
520
+ ]
521
+ },
503
522
  "SchemaDevServer": {
504
523
  "description": "Development server configuration",
505
524
  "type": "object",
@@ -1132,6 +1151,17 @@
1132
1151
  "$ref": "#/definitions/SchemaCopyItem"
1133
1152
  }
1134
1153
  },
1154
+ "crossOriginLoading": {
1155
+ "description": "Controls crossorigin for dynamically loaded chunks. Supports false, 'anonymous', or 'use-credentials'.",
1156
+ "anyOf": [
1157
+ {
1158
+ "$ref": "#/definitions/SchemaCrossOriginLoading"
1159
+ },
1160
+ {
1161
+ "type": "null"
1162
+ }
1163
+ ]
1164
+ },
1135
1165
  "cssChunkFilename": {
1136
1166
  "description": "Filename pattern for CSS chunk files",
1137
1167
  "type": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/pack",
3
- "version": "1.3.5-alpha.3",
3
+ "version": "1.3.6",
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.5-alpha.3",
44
+ "@utoo/pack-shared": "1.3.6",
45
45
  "domparser-rs": "^0.0.7",
46
46
  "find-up": "4.1.0",
47
47
  "get-port": "^7.1.0",
@@ -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.5-alpha.3",
96
- "@utoo/pack-darwin-x64": "1.3.5-alpha.3",
97
- "@utoo/pack-linux-arm64-gnu": "1.3.5-alpha.3",
98
- "@utoo/pack-linux-arm64-musl": "1.3.5-alpha.3",
99
- "@utoo/pack-linux-x64-gnu": "1.3.5-alpha.3",
100
- "@utoo/pack-linux-x64-musl": "1.3.5-alpha.3",
101
- "@utoo/pack-win32-x64-msvc": "1.3.5-alpha.3"
95
+ "@utoo/pack-darwin-arm64": "1.3.6",
96
+ "@utoo/pack-darwin-x64": "1.3.6",
97
+ "@utoo/pack-linux-arm64-gnu": "1.3.6",
98
+ "@utoo/pack-linux-arm64-musl": "1.3.6",
99
+ "@utoo/pack-linux-x64-gnu": "1.3.6",
100
+ "@utoo/pack-linux-x64-musl": "1.3.6",
101
+ "@utoo/pack-win32-x64-msvc": "1.3.6"
102
102
  }
103
103
  }