@terrazzo/cli 0.3.2 → 0.3.3

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,15 @@
1
1
  # @terrazzo/cli
2
2
 
3
+ ## 0.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ - Updated dependencies [[`9d888a6`](https://github.com/terrazzoapp/terrazzo/commit/9d888a65014b90fec90462cf8dc69f323f6e486b)]:
10
+ - @terrazzo/token-tools@0.3.3
11
+ - @terrazzo/parser@0.3.3
12
+
3
13
  ## 0.3.2
4
14
 
5
15
  ### 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.3",
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": {
@@ -40,8 +40,8 @@
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.0",
44
+ "@humanwhocodes/momoa": "^3.3.5",
45
45
  "@types/escodegen": "^0.0.10",
46
46
  "chokidar": "^3.6.0",
47
47
  "detect-package-manager": "^3.0.2",
@@ -51,8 +51,8 @@
51
51
  "meriyah": "^6.0.3",
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.3",
55
+ "@terrazzo/token-tools": "^0.3.3"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "tsc -p tsconfig.build.json",