innetjs 2.4.0-alpha.10 → 2.4.0-alpha.12
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/_virtual/_rollup-plugin-process-env.js +1 -1
- package/_virtual/_rollup-plugin-process-env.mjs +1 -1
- package/bin/innet +2 -2
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
package/bin/innet
CHANGED
|
@@ -418,7 +418,7 @@ class InnetJS {
|
|
|
418
418
|
browser: true,
|
|
419
419
|
}), polyfill__default["default"](), staticImport__default["default"]({
|
|
420
420
|
include: ['**/*.webp', '**/*.gif', '**/*.png', '**/*.jpeg', '**/*.jpg', '**/*.svg'],
|
|
421
|
-
exclude: ['node_modules/**'],
|
|
421
|
+
exclude: ['**/node_modules/**'],
|
|
422
422
|
}), styles__default["default"]({
|
|
423
423
|
mode: this.cssInJs ? 'inject' : 'extract',
|
|
424
424
|
url: true,
|
|
@@ -782,7 +782,7 @@ class InnetJS {
|
|
|
782
782
|
}
|
|
783
783
|
|
|
784
784
|
(function () {
|
|
785
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"2.4.0-alpha.
|
|
785
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"2.4.0-alpha.12"};
|
|
786
786
|
if (typeof process === 'undefined') {
|
|
787
787
|
globalThis.process = { env: env };
|
|
788
788
|
} else if (process.env) {
|
package/index.js
CHANGED
|
@@ -306,7 +306,7 @@ class InnetJS {
|
|
|
306
306
|
browser: true,
|
|
307
307
|
}), polyfill__default["default"](), staticImport__default["default"]({
|
|
308
308
|
include: ['**/*.webp', '**/*.gif', '**/*.png', '**/*.jpeg', '**/*.jpg', '**/*.svg'],
|
|
309
|
-
exclude: ['node_modules/**'],
|
|
309
|
+
exclude: ['**/node_modules/**'],
|
|
310
310
|
}), styles__default["default"]({
|
|
311
311
|
mode: this.cssInJs ? 'inject' : 'extract',
|
|
312
312
|
url: true,
|
package/index.mjs
CHANGED
|
@@ -271,7 +271,7 @@ class InnetJS {
|
|
|
271
271
|
browser: true,
|
|
272
272
|
}), polyfill(), staticImport({
|
|
273
273
|
include: ['**/*.webp', '**/*.gif', '**/*.png', '**/*.jpeg', '**/*.jpg', '**/*.svg'],
|
|
274
|
-
exclude: ['node_modules/**'],
|
|
274
|
+
exclude: ['**/node_modules/**'],
|
|
275
275
|
}), styles({
|
|
276
276
|
mode: this.cssInJs ? 'inject' : 'extract',
|
|
277
277
|
url: true,
|