@brickflow/cli 0.0.21 → 0.0.23

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
@@ -1,5 +1,17 @@
1
1
  # @brickflow/cli
2
2
 
3
+ ## 0.0.23
4
+
5
+ ### Patch Changes
6
+
7
+ - Lock update
8
+
9
+ ## 0.0.22
10
+
11
+ ### Patch Changes
12
+
13
+ - bump
14
+
3
15
  ## 0.0.21
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brickflow/cli",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "index.mjs",
@@ -15,15 +15,15 @@
15
15
  "format:check": "pnpm exec prettier . --ignore-path ../../.prettierignore --check"
16
16
  },
17
17
  "dependencies": {
18
- "@babel/parser": "7.29.7",
19
- "@babel/traverse": "7.29.7",
20
- "@babel/types": "7.29.7",
21
- "@google/genai": "2.8.0",
22
- "@vue/compiler-sfc": "3.5.35",
18
+ "@babel/parser": "8.0.0",
19
+ "@babel/traverse": "8.0.0",
20
+ "@babel/types": "8.0.0",
21
+ "@google/genai": "2.10.0",
22
+ "@vue/compiler-sfc": "3.5.39",
23
23
  "fantasticon": "4.1.0",
24
24
  "glob": "13.0.6",
25
25
  "looks-same": "10.0.1",
26
- "sharp": "0.34.5",
26
+ "sharp": "0.35.2",
27
27
  "svgo": "4.0.1"
28
28
  },
29
29
  "publishConfig": {
@@ -1,7 +1,6 @@
1
1
  import { parse as babelParse } from '@babel/parser'
2
2
  import traverseModule from '@babel/traverse'
3
- import bkt from '@babel/types'
4
- const { isIdentifier, isMemberExpression, isStringLiteral, isTemplateLiteral } = bkt
3
+ import { isIdentifier, isMemberExpression, isStringLiteral, isTemplateLiteral } from '@babel/types'
5
4
  import { compileTemplate, parse as parseSFC } from '@vue/compiler-sfc'
6
5
  import { execFileSync } from 'child_process'
7
6
  import { createHash } from 'crypto'