RubyGems
npm
Organizations
Log in
Sign up
npm
@modern-js/utils
Versions diffs
1.3.3 → 1.3.4
@modern-js/utils 1.3.3 → 1.3.4
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (6)
hide
show
package/CHANGELOG.md
+6
-0
package/dist/js/modern/constants.js
+9
-0
package/dist/js/node/constants.js
+9
-0
package/dist/js/treeshaking/constants.js
+9
-0
package/dist/types/constants.d.ts
+9
-0
package/package.json
+1
-1
package/CHANGELOG.md
CHANGED
Viewed
@@ -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
package/dist/js/modern/constants.js
CHANGED
Viewed
@@ -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
}
package/dist/js/node/constants.js
CHANGED
Viewed
@@ -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
}
package/dist/js/treeshaking/constants.js
CHANGED
Viewed
@@ -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
}
package/dist/types/constants.d.ts
CHANGED
Viewed
@@ -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
Viewed
@@ -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",