@blueprintui/cli 0.7.0 → 0.7.2
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 -1
- package/CHANGELOG.md +6 -3
- package/README.md +2 -2
- package/package.json +17 -17
- package/src/index.mjs +1 -2
- package/src/project/package.json +3 -3
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
20.
|
|
1
|
+
20.14.0
|
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Web Component libraries. This project is still an experimental work in progress.
|
|
|
17
17
|
|
|
18
18
|
| Options | Description |
|
|
19
19
|
| -------------- | ------------------------------------------ |
|
|
20
|
-
| --config
|
|
20
|
+
| --config | Path for `blueprint.config.js` file |
|
|
21
21
|
| --watch | Runs build in watch mode for development |
|
|
22
22
|
|
|
23
23
|
|
|
@@ -32,7 +32,7 @@ Web Component libraries. This project is still an experimental work in progress.
|
|
|
32
32
|
|
|
33
33
|
| Command | Description |
|
|
34
34
|
| ------------ | ----------------------------- |
|
|
35
|
-
| api | API lockfile management
|
|
35
|
+
| api | API lockfile management |
|
|
36
36
|
|
|
37
37
|
| Options | Description |
|
|
38
38
|
| -------------- | ----------------------------------------------------------------------------------------------- |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueprintui/cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./index.mjs",
|
|
6
6
|
"bin": {
|
|
@@ -14,30 +14,30 @@
|
|
|
14
14
|
"author": "Crylan Software",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@custom-elements-manifest/analyzer": "0.
|
|
18
|
-
"@lit/ts-transformers": "2.0.
|
|
19
|
-
"@rollup/plugin-node-resolve": "15.2.
|
|
20
|
-
"@rollup/plugin-replace": "5.0.
|
|
21
|
-
"@rollup/plugin-typescript": "11.1.
|
|
17
|
+
"@custom-elements-manifest/analyzer": "0.10.2",
|
|
18
|
+
"@lit/ts-transformers": "2.0.1",
|
|
19
|
+
"@rollup/plugin-node-resolve": "15.2.3",
|
|
20
|
+
"@rollup/plugin-replace": "5.0.7",
|
|
21
|
+
"@rollup/plugin-typescript": "11.1.6",
|
|
22
22
|
"@rollup/plugin-virtual": "3.0.2",
|
|
23
23
|
"@skypack/package-check": "0.2.2",
|
|
24
|
-
"acorn-import-attributes": "1.9.
|
|
24
|
+
"acorn-import-attributes": "1.9.5",
|
|
25
25
|
"acorn-import-assertions": "1.9.0",
|
|
26
|
-
"browserslist": "4.
|
|
27
|
-
"commander": "
|
|
28
|
-
"glob": "10.
|
|
29
|
-
"lightningcss": "1.
|
|
26
|
+
"browserslist": "4.23.1",
|
|
27
|
+
"commander": "12.1.0",
|
|
28
|
+
"glob": "10.4.1",
|
|
29
|
+
"lightningcss": "1.25.1",
|
|
30
30
|
"minify-html-literals": "1.3.5",
|
|
31
31
|
"path": "0.12.7",
|
|
32
|
-
"rollup": "
|
|
32
|
+
"rollup": "4.18.0",
|
|
33
33
|
"rollup-plugin-copy": "3.5.0",
|
|
34
34
|
"rollup-plugin-delete": "2.0.0",
|
|
35
|
-
"rollup-plugin-import-css": "
|
|
35
|
+
"rollup-plugin-import-css": "3.5.0",
|
|
36
36
|
"rollup-plugin-shell": "1.0.9",
|
|
37
|
-
"terser": "5.
|
|
38
|
-
"tslib": "2.6.
|
|
39
|
-
"typescript": "~5.
|
|
40
|
-
"zx": "
|
|
37
|
+
"terser": "5.31.1",
|
|
38
|
+
"tslib": "2.6.3",
|
|
39
|
+
"typescript": "~5.4.5",
|
|
40
|
+
"zx": "8.1.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"lite-server": "2.6.1"
|
package/src/index.mjs
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
import * as url from 'url';
|
|
4
|
-
import { path } from 'zx';
|
|
4
|
+
import { path, spinner } from 'zx';
|
|
5
5
|
import { cwd } from 'process';
|
|
6
|
-
import { spinner } from 'zx/experimental';
|
|
7
6
|
import { rollup, watch } from 'rollup';
|
|
8
7
|
import { program } from 'commander';
|
|
9
8
|
import { loadConfigFile } from 'rollup/loadConfigFile';
|
package/src/project/package.json
CHANGED
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"url": "https://cli.blueprintui.dev"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"lit": "^
|
|
37
|
+
"lit": "^3.1.4"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@blueprintui/cli": "^0.1
|
|
41
|
-
"typescript": "~4.
|
|
40
|
+
"@blueprintui/cli": "^0.7.1",
|
|
41
|
+
"typescript": "~5.4.5"
|
|
42
42
|
}
|
|
43
43
|
}
|