@utoo/pack-shared 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.
package/cjs/config.d.ts CHANGED
@@ -158,6 +158,7 @@ export interface ConfigComplete {
158
158
  to?: string;
159
159
  } | string>;
160
160
  publicPath?: string;
161
+ crossOriginLoading?: false | "anonymous" | "use-credentials";
161
162
  chunkLoadingGlobal?: string;
162
163
  entryRootExport?: string;
163
164
  };
@@ -36,6 +36,7 @@ export interface WebpackResolve {
36
36
  export interface WebpackOutput {
37
37
  path?: string;
38
38
  publicPath?: string | ((...args: any[]) => string);
39
+ crossOriginLoading?: false | "anonymous" | "use-credentials";
39
40
  filename?: string | ((...args: any[]) => string);
40
41
  chunkFilename?: string | ((...args: any[]) => string);
41
42
  cssFilename?: string | ((...args: any[]) => string);
@@ -451,6 +451,7 @@ function compatOutput(webpackOutput) {
451
451
  assetModuleFilename: normalizeWebpackHash(webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.assetModuleFilename),
452
452
  clean: !!(webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.clean),
453
453
  publicPath: webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.publicPath,
454
+ crossOriginLoading: webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.crossOriginLoading,
454
455
  chunkLoadingGlobal: webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.chunkLoadingGlobal,
455
456
  };
456
457
  }
package/esm/config.d.ts CHANGED
@@ -158,6 +158,7 @@ export interface ConfigComplete {
158
158
  to?: string;
159
159
  } | string>;
160
160
  publicPath?: string;
161
+ crossOriginLoading?: false | "anonymous" | "use-credentials";
161
162
  chunkLoadingGlobal?: string;
162
163
  entryRootExport?: string;
163
164
  };
@@ -36,6 +36,7 @@ export interface WebpackResolve {
36
36
  export interface WebpackOutput {
37
37
  path?: string;
38
38
  publicPath?: string | ((...args: any[]) => string);
39
+ crossOriginLoading?: false | "anonymous" | "use-credentials";
39
40
  filename?: string | ((...args: any[]) => string);
40
41
  chunkFilename?: string | ((...args: any[]) => string);
41
42
  cssFilename?: string | ((...args: any[]) => string);
@@ -448,6 +448,7 @@ function compatOutput(webpackOutput) {
448
448
  assetModuleFilename: normalizeWebpackHash(webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.assetModuleFilename),
449
449
  clean: !!(webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.clean),
450
450
  publicPath: webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.publicPath,
451
+ crossOriginLoading: webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.crossOriginLoading,
451
452
  chunkLoadingGlobal: webpackOutput === null || webpackOutput === void 0 ? void 0 : webpackOutput.chunkLoadingGlobal,
452
453
  };
453
454
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/pack-shared",
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",