@terrazzo/plugin-js 0.7.2 → 0.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @terrazzo/plugin-js
2
2
 
3
+ ## 0.7.3
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/cli@0.7.4
11
+ - @terrazzo/token-tools@0.7.4
12
+
3
13
  ## 0.7.2
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-js",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "Generate JS, TS, and JSON from your design tokens schema (requires @terrazzo/cli)",
5
5
  "type": "module",
6
6
  "author": {
@@ -27,11 +27,11 @@
27
27
  "@terrazzo/cli": "^0.7.0"
28
28
  },
29
29
  "dependencies": {
30
- "@terrazzo/token-tools": "^0.7.3"
30
+ "@terrazzo/token-tools": "^0.7.4"
31
31
  },
32
32
  "devDependencies": {
33
- "@terrazzo/cli": "^0.7.3",
34
- "@terrazzo/parser": "^0.7.2"
33
+ "@terrazzo/cli": "^0.7.4",
34
+ "@terrazzo/parser": "^0.7.3"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-js dist/index.js",