@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 ADDED
@@ -0,0 +1 @@
1
+ 16.15.0
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueprintui/cli",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "",
5
5
  "main": "./index.mjs",
6
6
  "bin": {
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();