@blueprintui/cli 0.3.0 → 0.5.0

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/CHANGELOG.md CHANGED
@@ -9,7 +9,10 @@
9
9
  - remove legacy Safari compatibility optimizations
10
10
  - bump dependencies
11
11
 
12
- ## 0.1.4
12
+ ## 0.4.0
13
+ - upgrade to TypeScript 5.2.x
14
+
15
+ ## 0.3.0
13
16
  - bump dependencies
14
17
 
15
18
  ## 0.1.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueprintui/cli",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "description": "",
5
5
  "main": "./index.mjs",
6
6
  "bin": {
@@ -14,29 +14,29 @@
14
14
  "author": "Crylan Software",
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
- "@custom-elements-manifest/analyzer": "0.8.3",
18
- "@lit/ts-transformers": "2.0.0-pre.0",
19
- "@rollup/plugin-node-resolve": "15.1.0",
20
- "@rollup/plugin-replace": "5.0.2",
21
- "@rollup/plugin-typescript": "11.1.1",
22
- "@rollup/plugin-virtual": "3.0.1",
17
+ "@custom-elements-manifest/analyzer": "0.8.4",
18
+ "@lit/ts-transformers": "2.0.0-pre.1",
19
+ "@rollup/plugin-node-resolve": "15.2.2",
20
+ "@rollup/plugin-replace": "5.0.3",
21
+ "@rollup/plugin-typescript": "11.1.5",
22
+ "@rollup/plugin-virtual": "3.0.2",
23
23
  "@skypack/package-check": "0.2.2",
24
24
  "acorn-import-assertions": "1.9.0",
25
- "browserslist": "4.21.9",
25
+ "browserslist": "4.22.1",
26
26
  "commander": "11.0.0",
27
- "glob": "10.3.0",
28
- "lightningcss": "1.21.0",
27
+ "glob": "10.3.10",
28
+ "lightningcss": "1.22.0",
29
29
  "minify-html-literals": "1.3.5",
30
30
  "path": "0.12.7",
31
- "rollup": "3.25.2",
32
- "rollup-plugin-copy": "3.4.0",
31
+ "rollup": "4.0.2",
32
+ "rollup-plugin-copy": "3.5.0",
33
33
  "rollup-plugin-delete": "2.0.0",
34
34
  "rollup-plugin-import-assert": "3.0.1",
35
35
  "rollup-plugin-shell": "1.0.9",
36
- "terser": "5.18.1",
37
- "tslib": "2.5.0",
38
- "typescript": "~5.0.4",
39
- "zx": "7.2.2"
36
+ "terser": "5.21.0",
37
+ "tslib": "2.6.2",
38
+ "typescript": "~5.2.2",
39
+ "zx": "7.2.3"
40
40
  },
41
41
  "devDependencies": {
42
42
  "lite-server": "2.6.1"
@@ -29,7 +29,7 @@ export default {
29
29
  plugins: [tsExtension(), baseDir(), orderElements(), metadata({ tags: ['docs', 'spec', 'status'] })],
30
30
  };
31
31
 
32
- export function orderElements() {
32
+ function orderElements() {
33
33
  return {
34
34
  name: 'order-elements',
35
35
  packageLinkPhase({ customElementsManifest }) {
@@ -38,7 +38,7 @@ export function orderElements() {
38
38
  };
39
39
  }
40
40
 
41
- export function baseDir() {
41
+ function baseDir() {
42
42
  return {
43
43
  name: 'base-dir',
44
44
  packageLinkPhase({ customElementsManifest }) {
@@ -49,7 +49,7 @@ export function baseDir() {
49
49
  };
50
50
  }
51
51
 
52
- export function tsExtension() {
52
+ function tsExtension() {
53
53
  return {
54
54
  name: 'ts-extensions',
55
55
  packageLinkPhase({ customElementsManifest }) {