@transitive-sdk/utils-caps 0.2.5 → 0.2.7
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/esbuild.js +2 -2
- package/package.json +1 -1
package/esbuild.js
CHANGED
|
@@ -42,7 +42,7 @@ const config = {
|
|
|
42
42
|
loader: {
|
|
43
43
|
'.svg': 'text',
|
|
44
44
|
'.wasm': 'file',
|
|
45
|
-
|
|
45
|
+
'.module.css': 'local-css',
|
|
46
46
|
},
|
|
47
47
|
plugins: [{
|
|
48
48
|
/* Plugin to run tailwind and @scope the result */
|
|
@@ -83,7 +83,7 @@ const run = async () => {
|
|
|
83
83
|
|
|
84
84
|
// define multiple config overwrites, for multiple outputs
|
|
85
85
|
const formats = [
|
|
86
|
-
{ format: 'iife' },
|
|
86
|
+
{ format: 'iife', logOverride: { 'empty-import-meta': 'info' } },
|
|
87
87
|
{ format: 'esm', outExtension: {'.js': '.esm.js'}}
|
|
88
88
|
];
|
|
89
89
|
|