@terrazzo/plugin-css 0.0.10 → 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-css@0.1.0 build /home/runner/work/terrazzo/terrazzo/packages/plugin-css
3
+ > pnpm run build:clean && pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-css dist/index.js
4
+
5
+
6
+ > @terrazzo/plugin-css@0.1.0 build:clean /home/runner/work/terrazzo/terrazzo/packages/plugin-css
7
+ > del-cli dist
8
+
9
+
10
+ > @terrazzo/plugin-css@0.1.0 build:ts /home/runner/work/terrazzo/terrazzo/packages/plugin-css
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-css" "dist/index.js"
16
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @terrazzo/plugin-css
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/parser@0.1.0
14
+ - @terrazzo/cli@0.1.0
15
+
16
+ ## 0.0.11
17
+
18
+ ### Patch Changes
19
+
20
+ - [#302](https://github.com/terrazzoapp/terrazzo/pull/302) [`d0a9df4`](https://github.com/terrazzoapp/terrazzo/commit/d0a9df43ccabd10ea338e12cbfcfbd7e00952d28) Thanks [@drwpow](https://github.com/drwpow)! - Fix parser bug with partialAliasOf that would lead to incorrect final values when aliasing
21
+
22
+ - Updated dependencies [[`d0a9df4`](https://github.com/terrazzoapp/terrazzo/commit/d0a9df43ccabd10ea338e12cbfcfbd7e00952d28)]:
23
+ - @terrazzo/parser@0.0.17
24
+ - @terrazzo/cli@0.0.17
25
+
3
26
  ## 0.0.10
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-css",
3
- "version": "0.0.10",
3
+ "version": "0.1.0",
4
4
  "description": "Convert DTCG tokens into CSS variables for use in any web application or native app with webview.",
5
5
  "type": "module",
6
6
  "author": {
@@ -27,11 +27,11 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "scule": "^1.3.0",
30
- "@terrazzo/parser": "^0.0.12",
31
- "@terrazzo/token-tools": "^0.0.6"
30
+ "@terrazzo/parser": "^0.1.0",
31
+ "@terrazzo/token-tools": "^0.1.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@terrazzo/cli": "^0.0.12"
34
+ "@terrazzo/cli": "^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-css dist/index.js",