@terrazzo/cli 0.0.17 → 0.0.19

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.
@@ -0,0 +1,12 @@
1
+
2
+ > @terrazzo/cli@0.0.19 build /home/runner/work/terrazzo/terrazzo/packages/cli
3
+ > pnpm run build:clean && pnpm run build:ts
4
+
5
+
6
+ > @terrazzo/cli@0.0.19 build:clean /home/runner/work/terrazzo/terrazzo/packages/cli
7
+ > del-cli dist
8
+
9
+
10
+ > @terrazzo/cli@0.0.19 build:ts /home/runner/work/terrazzo/terrazzo/packages/cli
11
+ > tsc -p tsconfig.build.json
12
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @terrazzo/cli
2
2
 
3
+ ## 0.0.19
4
+
5
+ ### Patch Changes
6
+
7
+ - [#313](https://github.com/terrazzoapp/terrazzo/pull/313) [`1408594`](https://github.com/terrazzoapp/terrazzo/commit/1408594de029f57137c936dc2ff9ab949f039215) Thanks [@drwpow](https://github.com/drwpow)! - Fix bug in gradient position aliasing
8
+
9
+ - [#313](https://github.com/terrazzoapp/terrazzo/pull/313) [`1408594`](https://github.com/terrazzoapp/terrazzo/commit/1408594de029f57137c936dc2ff9ab949f039215) Thanks [@drwpow](https://github.com/drwpow)! - Improve alias type validation
10
+
11
+ - Updated dependencies [[`1408594`](https://github.com/terrazzoapp/terrazzo/commit/1408594de029f57137c936dc2ff9ab949f039215), [`1408594`](https://github.com/terrazzoapp/terrazzo/commit/1408594de029f57137c936dc2ff9ab949f039215)]:
12
+ - @terrazzo/parser@0.0.19
13
+
14
+ ## 0.0.18
15
+
16
+ ### Patch Changes
17
+
18
+ - [#305](https://github.com/terrazzoapp/terrazzo/pull/305) [`9ce829c`](https://github.com/terrazzoapp/terrazzo/commit/9ce829c37c8a068f7d7157b615d4a00472c33156) Thanks [@drwpow](https://github.com/drwpow)! - Don’t log AST node on error
19
+
20
+ - Updated dependencies [[`9ce829c`](https://github.com/terrazzoapp/terrazzo/commit/9ce829c37c8a068f7d7157b615d4a00472c33156)]:
21
+ - @terrazzo/parser@0.0.18
22
+
3
23
  ## 0.0.17
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/cli",
3
- "version": "0.0.17",
3
+ "version": "0.0.19",
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": {
@@ -35,14 +35,14 @@
35
35
  "chokidar": "^3.6.0",
36
36
  "dotenv": "^16.4.5",
37
37
  "merge-anything": "^5.1.7",
38
- "picocolors": "^1.0.1",
38
+ "picocolors": "^1.1.0",
39
39
  "yaml-to-momoa": "^0.0.1",
40
40
  "yargs-parser": "^21.1.1",
41
- "@terrazzo/parser": "^0.0.17",
41
+ "@terrazzo/parser": "^0.0.19",
42
42
  "@terrazzo/token-tools": "^0.0.9"
43
43
  },
44
44
  "devDependencies": {
45
- "typescript": "^5.5.4"
45
+ "typescript": "^5.6.3"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "pnpm run build:clean && pnpm run build:ts",