@spark-ui/cli-utils 2.11.4 → 2.11.8

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,24 @@
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.8](https://github.com/adevinta/spark/compare/@spark-ui/cli-utils@2.11.7...@spark-ui/cli-utils@2.11.8) (2023-05-10)
7
+
8
+ ### Bug Fixes
9
+
10
+ - force new release to all packages ([d7f5136](https://github.com/adevinta/spark/commit/d7f513698cf48dd9c102fafaeb336096818c6b2b))
11
+
12
+ ## [2.11.7](https://github.com/adevinta/spark/compare/@spark-ui/cli-utils@2.11.6...@spark-ui/cli-utils@2.11.7) (2023-05-09)
13
+
14
+ **Note:** Version bump only for package @spark-ui/cli-utils
15
+
16
+ ## [2.11.6](https://github.com/adevinta/spark/compare/@spark-ui/cli-utils@2.11.5...@spark-ui/cli-utils@2.11.6) (2023-05-03)
17
+
18
+ **Note:** Version bump only for package @spark-ui/cli-utils
19
+
20
+ ## [2.11.5](https://github.com/adevinta/spark/compare/@spark-ui/cli-utils@2.11.4...@spark-ui/cli-utils@2.11.5) (2023-05-02)
21
+
22
+ **Note:** Version bump only for package @spark-ui/cli-utils
23
+
6
24
  ## [2.11.4](https://github.com/adevinta/spark/compare/@spark-ui/cli-utils@2.11.3...@spark-ui/cli-utils@2.11.4) (2023-04-28)
7
25
 
8
26
  ### Bug Fixes
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ Copyright (c) Adevinta ASA.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-ui/cli-utils",
3
- "version": "2.11.4",
3
+ "version": "2.11.8",
4
4
  "description": "Spark CLI utils",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,12 +15,17 @@
15
15
  "url": "git@github.com:adevinta/spark.git",
16
16
  "directory": "packages/utils/cli"
17
17
  },
18
+ "bugs": {
19
+ "url": "https://github.com/adevinta/spark/issues"
20
+ },
21
+ "homepage": "https://sparkui.vercel.app",
22
+ "license": "MIT",
18
23
  "dependencies": {
19
24
  "@clack/prompts": "0.6.2",
20
25
  "camel-case": "4.1.2",
21
26
  "chalk": "5.2.0",
22
27
  "commander": "10.0.0",
23
- "esbuild": "0.17.11",
28
+ "esbuild": "0.17.18",
24
29
  "fs-extra": "11.1.0",
25
30
  "glob": "8.1.0",
26
31
  "pascal-case": "3.1.2"
@@ -28,10 +33,5 @@
28
33
  "devDependencies": {
29
34
  "@types/fs-extra": "11.0.1"
30
35
  },
31
- "bugs": {
32
- "url": "https://github.com/adevinta/spark/issues"
33
- },
34
- "homepage": "https://sparkui.vercel.app",
35
- "license": "MIT",
36
- "gitHead": "d260e66b43d070c194f90805fecba64fd5095941"
36
+ "gitHead": "f83534112dc0eaf1fea3b747e5570fff39397b96"
37
37
  }
package/src/index.doc.mdx CHANGED
@@ -12,7 +12,6 @@ This package provides some CLI commands to improve the development experience wh
12
12
 
13
13
  - [Installation](#installation)
14
14
  - [Generating a new package](#generating-a-new-package)
15
- - [Setting up your themes](#setting-up-your-themes)
16
15
 
17
16
  ## Installation
18
17
 
@@ -12,7 +12,8 @@ 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
- it('should properly generate package from CLI when arguments are valid', async () => {
15
+ // TODO: #710: FIX component generation tool test
16
+ it.skip('should properly generate package from CLI when arguments are valid', async () => {
16
17
  // GIVEN a package definition
17
18
  const packageName = 'bar'
18
19
  const packageType = 'component'