@terrazzo/cli 0.7.2 → 0.7.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.7.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#485](https://github.com/terrazzoapp/terrazzo/pull/485) [`84335da`](https://github.com/terrazzoapp/terrazzo/commit/84335da86adbe4cf112b91d8d9bfa1301c5492d4) Thanks [@drwpow](https://github.com/drwpow)! - Add transform API to allow dynamic parsing / transformation of tokens on load
8
+
9
+ - Updated dependencies [[`84335da`](https://github.com/terrazzoapp/terrazzo/commit/84335da86adbe4cf112b91d8d9bfa1301c5492d4)]:
10
+ - @terrazzo/parser@0.7.3
11
+ - @terrazzo/token-tools@0.7.4
12
+
13
+ ## 0.7.3
14
+
15
+ ### Patch Changes
16
+
17
+ - [#482](https://github.com/terrazzoapp/terrazzo/pull/482) [`abc14c4`](https://github.com/terrazzoapp/terrazzo/commit/abc14c4f59f21a1c7d05d613dacdebcd9d512838) Thanks [@drwpow](https://github.com/drwpow)! - Fix documentation links
18
+
19
+ - Updated dependencies [[`abc14c4`](https://github.com/terrazzoapp/terrazzo/commit/abc14c4f59f21a1c7d05d613dacdebcd9d512838)]:
20
+ - @terrazzo/parser@0.7.2
21
+ - @terrazzo/token-tools@0.7.3
22
+
3
23
  ## 0.7.2
4
24
 
5
25
  ### Patch Changes
package/README.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # ⛋ @terrazzo/cli
2
2
 
3
- CLI for generating any type of code from DTCG tokens.json files.
3
+ The Terrazzo CLI takes DTCG tokens and generates code using plugins (e.g. [CSS](../plugin-css/), [Sass](../plugin-sass/), [JS/TS](../plugin-js/), and more). You can either run the Terrazzo CLI manually, or as part of your <abbr title="Continuous Integration">CI</abbr> process.
4
4
 
5
- [View Documentation](https://terrazzi-docs-beta.pages.dev)
5
+ > [!TIP]
6
+ > Migrating from Cobalt? Check out the [Migration Guide](/docs/cli/migrating)
7
+
8
+ ## Quickstart
9
+
10
+ First, install the package using your package manager of choice:
11
+
12
+ ```sh
13
+ npm i -D @terrazzo/cli
14
+ ```
15
+
16
+ And you can create a configuration and install plugins with the `init` command:
17
+
18
+ ```sh
19
+ npx tz init
20
+ ```
21
+
22
+ This will create a `terrazzo.config.js` starter config file, and even start your token system from a popular open source design system.
23
+
24
+ [Full documentation](https://terrazzo.app/docs/cli)