@modern-js/utils 1.3.3 → 1.3.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @modern-js/utils
2
2
 
3
+ ## 1.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - db43dce6: expose plugin-unbundle configs
8
+
3
9
  ## 1.3.3
4
10
 
5
11
  ### Patch Changes
@@ -252,6 +252,15 @@ export const PLUGIN_SCHEMAS = {
252
252
  items: {
253
253
  type: 'string'
254
254
  }
255
+ },
256
+ ignoreModuleCache: {
257
+ type: 'boolean'
258
+ },
259
+ clearPdnCache: {
260
+ type: 'boolean'
261
+ },
262
+ pdnHost: {
263
+ type: 'string'
255
264
  }
256
265
  }
257
266
  }
@@ -271,6 +271,15 @@ const PLUGIN_SCHEMAS = {
271
271
  items: {
272
272
  type: 'string'
273
273
  }
274
+ },
275
+ ignoreModuleCache: {
276
+ type: 'boolean'
277
+ },
278
+ clearPdnCache: {
279
+ type: 'boolean'
280
+ },
281
+ pdnHost: {
282
+ type: 'string'
274
283
  }
275
284
  }
276
285
  }
@@ -252,6 +252,15 @@ export var PLUGIN_SCHEMAS = {
252
252
  items: {
253
253
  type: 'string'
254
254
  }
255
+ },
256
+ ignoreModuleCache: {
257
+ type: 'boolean'
258
+ },
259
+ clearPdnCache: {
260
+ type: 'boolean'
261
+ },
262
+ pdnHost: {
263
+ type: 'string'
255
264
  }
256
265
  }
257
266
  }
@@ -148,6 +148,15 @@ export declare const PLUGIN_SCHEMAS: {
148
148
  type: string;
149
149
  };
150
150
  };
151
+ ignoreModuleCache: {
152
+ type: string;
153
+ };
154
+ clearPdnCache: {
155
+ type: string;
156
+ };
157
+ pdnHost: {
158
+ type: string;
159
+ };
151
160
  };
152
161
  };
153
162
  })[];
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.3.3",
14
+ "version": "1.3.4",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",