@blueprintui/cli 0.0.2 → 0.0.3
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/.nvmrc +1 -0
- package/{LICENSE → LICENSE.md} +0 -0
- package/package.json +1 -1
- package/rollup.config.mjs +2 -2
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
16.15.0
|
package/{LICENSE → LICENSE.md}
RENAMED
|
File without changes
|
package/package.json
CHANGED
package/rollup.config.mjs
CHANGED
|
@@ -24,7 +24,7 @@ const exec = promisify(_exec);
|
|
|
24
24
|
const __filename = fileURLToPath(import.meta.url);
|
|
25
25
|
const __dirname = dirname(__filename);
|
|
26
26
|
|
|
27
|
-
let userConfig = { }
|
|
27
|
+
let userConfig = { };
|
|
28
28
|
if (process.env.BLUEPRINTUI_CONFIG) {
|
|
29
29
|
userConfig = await import(process.env.BLUEPRINTUI_CONFIG);
|
|
30
30
|
}
|
|
@@ -38,7 +38,7 @@ const config = {
|
|
|
38
38
|
tsconfig: './tsconfig.lib.json',
|
|
39
39
|
customElementsManifestConfig: './custom-elements-manifest.config.mjs',
|
|
40
40
|
sourcemap: false,
|
|
41
|
-
...userConfig.default
|
|
41
|
+
...userConfig.default.library
|
|
42
42
|
};
|
|
43
43
|
|
|
44
44
|
const cwd = process.cwd();
|