@spark-ui/cli-utils 2.11.9 → 2.11.10

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
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.11.10](https://github.com/adevinta/spark/compare/@spark-ui/cli-utils@2.11.9...@spark-ui/cli-utils@2.11.10) (2023-05-25)
7
+
8
+ **Note:** Version bump only for package @spark-ui/cli-utils
9
+
6
10
  ## [2.11.9](https://github.com/adevinta/spark/compare/@spark-ui/cli-utils@2.11.8...@spark-ui/cli-utils@2.11.9) (2023-05-17)
7
11
 
8
12
  **Note:** Version bump only for package @spark-ui/cli-utils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-ui/cli-utils",
3
- "version": "2.11.9",
3
+ "version": "2.11.10",
4
4
  "description": "Spark CLI utils",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -21,17 +21,17 @@
21
21
  "homepage": "https://sparkui.vercel.app",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@clack/prompts": "0.6.2",
24
+ "@clack/prompts": "0.6.3",
25
25
  "camel-case": "4.1.2",
26
26
  "chalk": "5.2.0",
27
27
  "commander": "10.0.1",
28
- "esbuild": "0.17.18",
29
- "fs-extra": "11.1.0",
28
+ "esbuild": "0.17.19",
29
+ "fs-extra": "11.1.1",
30
30
  "glob": "8.1.0",
31
31
  "pascal-case": "3.1.2"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/fs-extra": "11.0.1"
35
35
  },
36
- "gitHead": "a9dfeed42aba9e6f174e6be4c9f6f5b097fed56a"
36
+ "gitHead": "86c94271e352a50fa158f9c41aabe28a7f3c11d1"
37
37
  }
@@ -12,8 +12,7 @@ const cliPath = path.join(__dirname, '../../bin/spark.mjs')
12
12
  const cliProcess = cmd.create(cliPath)
13
13
 
14
14
  describe('CLI `spark generate` (component package)', () => {
15
- // TODO: #710: FIX component generation tool test
16
- it.skip('should properly generate package from CLI when arguments are valid', async () => {
15
+ it('should properly generate package from CLI when arguments are valid', async () => {
17
16
  // GIVEN a package definition
18
17
  const packageName = 'bar'
19
18
  const packageType = 'component'