@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 CHANGED
@@ -1 +1 @@
1
- 20.0.0
1
+ 20.14.0
package/CHANGELOG.md CHANGED
@@ -1,12 +1,15 @@
1
1
  # Changelog
2
2
 
3
- # 0.7.0
3
+ ## 0.7.1
4
+ - bump dependencies
5
+
6
+ ## 0.7.0
4
7
  - lit transformer update
5
8
 
6
- # 0.6.0
9
+ ## 0.6.0
7
10
  - revert rollup 4.0 upgrade
8
11
 
9
- # 0.5.0
12
+ ## 0.5.0
10
13
  - migrate to TS 5.x
11
14
 
12
15
  ## 0.4.0
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 | Path for `blueprint.config.js` file |
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.0",
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.8.4",
18
- "@lit/ts-transformers": "2.0.0",
19
- "@rollup/plugin-node-resolve": "15.2.2",
20
- "@rollup/plugin-replace": "5.0.3",
21
- "@rollup/plugin-typescript": "11.1.5",
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.2",
24
+ "acorn-import-attributes": "1.9.5",
25
25
  "acorn-import-assertions": "1.9.0",
26
- "browserslist": "4.22.1",
27
- "commander": "11.0.0",
28
- "glob": "10.3.10",
29
- "lightningcss": "1.22.0",
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": "3.29.3",
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": "^3.3.4",
35
+ "rollup-plugin-import-css": "3.5.0",
36
36
  "rollup-plugin-shell": "1.0.9",
37
- "terser": "5.21.0",
38
- "tslib": "2.6.2",
39
- "typescript": "~5.2.2",
40
- "zx": "7.2.3"
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';
@@ -34,10 +34,10 @@
34
34
  "url": "https://cli.blueprintui.dev"
35
35
  },
36
36
  "dependencies": {
37
- "lit": "^2.2.5"
37
+ "lit": "^3.1.4"
38
38
  },
39
39
  "devDependencies": {
40
- "@blueprintui/cli": "^0.1.0",
41
- "typescript": "~4.7.4"
40
+ "@blueprintui/cli": "^0.7.1",
41
+ "typescript": "~5.4.5"
42
42
  }
43
43
  }