@terrazzo/cli 0.3.2 → 0.3.4

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,25 @@
1
1
  # @terrazzo/cli
2
2
 
3
+ ## 0.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#408](https://github.com/terrazzoapp/terrazzo/pull/408) [`6f97566`](https://github.com/terrazzoapp/terrazzo/commit/6f97566ea83b7bcb42befd36aa618d52ec6e758f) Thanks [@drwpow](https://github.com/drwpow)! - Fix bug where setTransform() would not properly deduplicate token values
8
+
9
+ - Updated dependencies [[`6f97566`](https://github.com/terrazzoapp/terrazzo/commit/6f97566ea83b7bcb42befd36aa618d52ec6e758f)]:
10
+ - @terrazzo/token-tools@0.3.4
11
+ - @terrazzo/parser@0.3.4
12
+
13
+ ## 0.3.3
14
+
15
+ ### Patch Changes
16
+
17
+ - [#400](https://github.com/terrazzoapp/terrazzo/pull/400) [`9d888a6`](https://github.com/terrazzoapp/terrazzo/commit/9d888a65014b90fec90462cf8dc69f323f6e486b) Thanks [@drwpow](https://github.com/drwpow)! - Fix tz init "outDir" typo
18
+
19
+ - Updated dependencies [[`9d888a6`](https://github.com/terrazzoapp/terrazzo/commit/9d888a65014b90fec90462cf8dc69f323f6e486b)]:
20
+ - @terrazzo/token-tools@0.3.3
21
+ - @terrazzo/parser@0.3.3
22
+
3
23
  ## 0.3.2
4
24
 
5
25
  ### Patch Changes
package/dist/init.js CHANGED
@@ -203,7 +203,7 @@ export default defineConfig({
203
203
  plugins: [
204
204
  ${plugins.map((p) => `${p.specifier}(),`).join('\n ')}
205
205
  ],
206
- outdir: './dist/',
206
+ outDir: './dist/',
207
207
  lint: {
208
208
  /** @see https://terrazzo.app/docs/cli/lint */
209
209
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/cli",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.",
5
5
  "type": "module",
6
6
  "author": {
@@ -28,7 +28,7 @@
28
28
  "./README.md": "./README.md",
29
29
  "./package.json": "./package.json"
30
30
  },
31
- "homepage": "https://terrazzoapp.com/docs/cli",
31
+ "homepage": "https://terrazzo.app/docs/cli",
32
32
  "repository": {
33
33
  "type": "git",
34
34
  "url": "https://github.com/terrazzoapp/terrazzo.git",
@@ -40,19 +40,19 @@
40
40
  "terrazzo": "bin/cli.js"
41
41
  },
42
42
  "dependencies": {
43
- "@clack/prompts": "^0.8.2",
44
- "@humanwhocodes/momoa": "^3.3.4",
43
+ "@clack/prompts": "^0.9.1",
44
+ "@humanwhocodes/momoa": "^3.3.6",
45
45
  "@types/escodegen": "^0.0.10",
46
46
  "chokidar": "^3.6.0",
47
47
  "detect-package-manager": "^3.0.2",
48
- "dotenv": "^16.4.5",
48
+ "dotenv": "^16.4.7",
49
49
  "escodegen": "^2.1.0",
50
50
  "merge-anything": "^5.1.7",
51
- "meriyah": "^6.0.3",
51
+ "meriyah": "^6.0.5",
52
52
  "picocolors": "^1.1.1",
53
53
  "yaml-to-momoa": "^0.0.3",
54
- "@terrazzo/parser": "^0.3.2",
55
- "@terrazzo/token-tools": "^0.3.2"
54
+ "@terrazzo/parser": "^0.3.4",
55
+ "@terrazzo/token-tools": "^0.3.4"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "tsc -p tsconfig.build.json",