@terrazzo/plugin-js 0.0.1 → 0.0.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 +18 -0
  2. package/package.json +7 -8
package/CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
1
+ # @terrazzo/plugin-js
2
+
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`d0a9df4`](https://github.com/terrazzoapp/terrazzo/commit/d0a9df43ccabd10ea338e12cbfcfbd7e00952d28)]:
8
+ - @terrazzo/cli@0.0.17
9
+
10
+ ## 0.0.2
11
+
12
+ ### Patch Changes
13
+
14
+ - [#285](https://github.com/terrazzoapp/terrazzo/pull/285) [`e8a0df1`](https://github.com/terrazzoapp/terrazzo/commit/e8a0df1f3b50cf7cb292bcc475aae271feae4569) Thanks [@drwpow](https://github.com/drwpow)! - Add support for multiple token files
15
+
16
+ - Updated dependencies [[`e8a0df1`](https://github.com/terrazzoapp/terrazzo/commit/e8a0df1f3b50cf7cb292bcc475aae271feae4569)]:
17
+ - @terrazzo/token-tools@0.0.6
18
+ - @terrazzo/cli@0.0.12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-js",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Generate JS, TS, and JSON from your design tokens schema (requires @terrazzo/cli)",
5
5
  "type": "module",
6
6
  "author": {
@@ -24,20 +24,19 @@
24
24
  },
25
25
  "license": "MIT",
26
26
  "peerDependencies": {
27
- "@terrazzo/cli": "^0.0.11"
27
+ "@terrazzo/cli": "^0.0.17"
28
28
  },
29
29
  "dependencies": {
30
- "@terrazzo/token-tools": "^0.0.4"
30
+ "@terrazzo/token-tools": "^0.0.9"
31
31
  },
32
32
  "devDependencies": {
33
- "@terrazzo/cli": "^0.0.11",
34
- "@terrazzo/parser": "^0.0.11"
33
+ "@terrazzo/cli": "^0.0.17",
34
+ "@terrazzo/parser": "^0.0.17"
35
35
  },
36
36
  "scripts": {
37
- "build": "pnpm run build:clean && pnpm run build:ts && pnpm run build:license",
38
- "build:clean": "del dist",
37
+ "build": "pnpm run build:clean && pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-js dist/index.js",
38
+ "build:clean": "del-cli dist",
39
39
  "build:ts": "tsc -p tsconfig.build.json",
40
- "build:license": "node ../../scripts/inject-license.js @terrazzo/plugin-js dist/index.js",
41
40
  "dev": "tsc -p tsconfig.build.json -w",
42
41
  "lint": "biome check .",
43
42
  "test": "pnpm --filter @terrazzo/plugin-js run \"/^test:*/\"",