@terrazzo/plugin-js 0.7.1 → 0.7.2

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,15 @@
1
1
  # @terrazzo/plugin-js
2
2
 
3
+ ## 0.7.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ - Updated dependencies [[`abc14c4`](https://github.com/terrazzoapp/terrazzo/commit/abc14c4f59f21a1c7d05d613dacdebcd9d512838)]:
10
+ - @terrazzo/cli@0.7.3
11
+ - @terrazzo/token-tools@0.7.3
12
+
3
13
  ## 0.7.1
4
14
 
5
15
  ### 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 18 or later](https://nodejs.org). With that installed, run:
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.1",
3
+ "version": "0.7.2",
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.1"
30
+ "@terrazzo/token-tools": "^0.7.3"
31
31
  },
32
32
  "devDependencies": {
33
- "@terrazzo/cli": "^0.7.1",
34
- "@terrazzo/parser": "^0.7.1"
33
+ "@terrazzo/cli": "^0.7.3",
34
+ "@terrazzo/parser": "^0.7.2"
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": "biome check .",
42
- "test": "pnpm --filter @terrazzo/plugin-js run \"/^test:*/\"",
43
- "test:js": "vitest run",
44
- "test:ts": "tsc --noEmit"
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
  }