@terrazzo/cli 0.0.18 → 0.1.0

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.1.0 build /home/runner/work/terrazzo/terrazzo/packages/cli
3
+ > pnpm run build:clean && pnpm run build:ts
4
+
5
+
6
+ > @terrazzo/cli@0.1.0 build:clean /home/runner/work/terrazzo/terrazzo/packages/cli
7
+ > del-cli dist
8
+
9
+
10
+ > @terrazzo/cli@0.1.0 build:ts /home/runner/work/terrazzo/terrazzo/packages/cli
11
+ > tsc -p tsconfig.build.json
12
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @terrazzo/cli
2
2
 
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#319](https://github.com/terrazzoapp/terrazzo/pull/319) [`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244).
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32)]:
12
+ - @terrazzo/token-tools@0.1.0
13
+ - @terrazzo/parser@0.1.0
14
+
15
+ ## 0.0.19
16
+
17
+ ### Patch Changes
18
+
19
+ - [#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
20
+
21
+ - [#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
22
+
23
+ - Updated dependencies [[`1408594`](https://github.com/terrazzoapp/terrazzo/commit/1408594de029f57137c936dc2ff9ab949f039215), [`1408594`](https://github.com/terrazzoapp/terrazzo/commit/1408594de029f57137c936dc2ff9ab949f039215)]:
24
+ - @terrazzo/parser@0.0.19
25
+
3
26
  ## 0.0.18
4
27
 
5
28
  ### Patch Changes
@@ -0,0 +1,13 @@
1
+ # Contributing to @terrazzo/cli
2
+
3
+ This document contains developer notes and context for @terrazzo/parser. For general contribution guidelines, see [CONTRIBUTING.md](../../CONTRIBUTING.md) in the root.
4
+
5
+ ## What this package does
6
+
7
+ - Runs @terrazzo/parser and saves the output to disk using Node.js
8
+ - Provide watcher scripts that also do this
9
+
10
+ ## What this package DOES NOT do
11
+
12
+ - Parse/validate/normalize tokens.json (that’s for @terrazzo/parser)
13
+ - Interact with plugins
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/cli",
3
- "version": "0.0.18",
3
+ "version": "0.1.0",
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.1.0",
38
+ "picocolors": "^1.1.1",
39
39
  "yaml-to-momoa": "^0.0.1",
40
40
  "yargs-parser": "^21.1.1",
41
- "@terrazzo/parser": "^0.0.18",
42
- "@terrazzo/token-tools": "^0.0.9"
41
+ "@terrazzo/parser": "^0.1.0",
42
+ "@terrazzo/token-tools": "^0.1.0"
43
43
  },
44
44
  "devDependencies": {
45
- "typescript": "^5.6.2"
45
+ "typescript": "^5.6.3"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "pnpm run build:clean && pnpm run build:ts",