@brickflow/cli 0.0.22 → 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,11 @@
1
1
  # @brickflow/cli
2
2
 
3
+ ## 0.0.23
4
+
5
+ ### Patch Changes
6
+
7
+ - Lock update
8
+
3
9
  ## 0.0.22
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brickflow/cli",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "index.mjs",
@@ -19,7 +19,7 @@
19
19
  "@babel/traverse": "8.0.0",
20
20
  "@babel/types": "8.0.0",
21
21
  "@google/genai": "2.10.0",
22
- "@vue/compiler-sfc": "3.5.38",
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",
@@ -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'