@terrazzo/plugin-js 0.0.3 → 0.1.0

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.
@@ -0,0 +1,16 @@
1
+
2
+ > @terrazzo/plugin-js@0.1.0 build /home/runner/work/terrazzo/terrazzo/packages/plugin-js
3
+ > pnpm run build:clean && pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-js dist/index.js
4
+
5
+
6
+ > @terrazzo/plugin-js@0.1.0 build:clean /home/runner/work/terrazzo/terrazzo/packages/plugin-js
7
+ > del-cli dist
8
+
9
+
10
+ > @terrazzo/plugin-js@0.1.0 build:ts /home/runner/work/terrazzo/terrazzo/packages/plugin-js
11
+ > tsc -p tsconfig.build.json
12
+
13
+
14
+ > @terrazzo/monorepo@ inject-license /home/runner/work/terrazzo/terrazzo
15
+ > node scripts/inject-license.js "@terrazzo/plugin-js" "dist/index.js"
16
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @terrazzo/plugin-js
2
2
 
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#319](https://github.com/terrazzoapp/terrazzo/pull/319) [`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244).
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32)]:
12
+ - @terrazzo/token-tools@0.1.0
13
+ - @terrazzo/cli@0.1.0
14
+
3
15
  ## 0.0.3
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-js",
3
- "version": "0.0.3",
3
+ "version": "0.1.0",
4
4
  "description": "Generate JS, TS, and JSON from your design tokens schema (requires @terrazzo/cli)",
5
5
  "type": "module",
6
6
  "author": {
@@ -24,14 +24,14 @@
24
24
  },
25
25
  "license": "MIT",
26
26
  "peerDependencies": {
27
- "@terrazzo/cli": "^0.0.17"
27
+ "@terrazzo/cli": "^0.1.0"
28
28
  },
29
29
  "dependencies": {
30
- "@terrazzo/token-tools": "^0.0.9"
30
+ "@terrazzo/token-tools": "^0.1.0"
31
31
  },
32
32
  "devDependencies": {
33
- "@terrazzo/cli": "^0.0.17",
34
- "@terrazzo/parser": "^0.0.17"
33
+ "@terrazzo/cli": "^0.1.0",
34
+ "@terrazzo/parser": "^0.1.0"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "pnpm run build:clean && pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-js dist/index.js",