@terrazzo/plugin-js 0.7.1 → 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.
- package/CHANGELOG.md +20 -0
- package/README.md +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
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
|
+
|
|
13
|
+
## 0.7.2
|
|
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/cli@0.7.3
|
|
21
|
+
- @terrazzo/token-tools@0.7.3
|
|
22
|
+
|
|
3
23
|
## 0.7.1
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Generate JavaScript, TypeScript, and JSON from DTCG tokens.
|
|
|
4
4
|
|
|
5
5
|
## Setup
|
|
6
6
|
|
|
7
|
-
Requires [Node.js
|
|
7
|
+
Requires [Node.js 20 or later](https://nodejs.org). With that installed, run:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
10
10
|
npm i -D @terrazzo/cli @terrazzo/plugin-js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@terrazzo/plugin-js",
|
|
3
|
-
"version": "0.7.
|
|
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,20 +27,20 @@
|
|
|
27
27
|
"@terrazzo/cli": "^0.7.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@terrazzo/token-tools": "^0.7.
|
|
30
|
+
"@terrazzo/token-tools": "^0.7.4"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@terrazzo/cli": "^0.7.
|
|
34
|
-
"@terrazzo/parser": "^0.7.
|
|
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",
|
|
38
38
|
"build:ts": "tsc -p tsconfig.build.json",
|
|
39
39
|
"dev": "tsc -p tsconfig.build.json -w",
|
|
40
40
|
"format": "biome check --fix --unsafe .",
|
|
41
|
-
"lint": "
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"test
|
|
41
|
+
"lint": "pnpm --filter @terrazzo/plugin-js run \"/^lint:.*/\"",
|
|
42
|
+
"lint:js": "biome check .",
|
|
43
|
+
"lint:ts": "tsc --noEmit",
|
|
44
|
+
"test": "vitest run"
|
|
45
45
|
}
|
|
46
46
|
}
|