@terrazzo/plugin-css 2.0.0-alpha.1 → 2.0.0-alpha.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @terrazzo/plugin-css
2
2
 
3
+ ## 2.0.0-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#568](https://github.com/terrazzoapp/terrazzo/pull/568) [`67c75be`](https://github.com/terrazzoapp/terrazzo/commit/67c75be78978cece52b61cf258ccc3a875e6af48) Thanks [@drwpow](https://github.com/drwpow)! - Fix border tokens not cascading correctly across modes
8
+
9
+ - Updated dependencies [[`67c75be`](https://github.com/terrazzoapp/terrazzo/commit/67c75be78978cece52b61cf258ccc3a875e6af48)]:
10
+ - @terrazzo/cli@2.0.0-alpha.2
11
+ - @terrazzo/token-tools@2.0.0-alpha.2
12
+
3
13
  ## 2.0.0
4
14
 
5
15
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-css",
3
- "version": "2.0.0-alpha.1",
3
+ "version": "2.0.0-alpha.2",
4
4
  "description": "Convert DTCG design tokens JSON into CSS variables for use in any web application or native app with webview.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -27,16 +27,16 @@
27
27
  "directory": "./packages/plugin-css/"
28
28
  },
29
29
  "peerDependencies": {
30
- "@terrazzo/cli": "^2.0.0-alpha.1"
30
+ "@terrazzo/cli": "^2.0.0-alpha.2"
31
31
  },
32
32
  "dependencies": {
33
33
  "wildcard-match": "^5.1.4",
34
- "@terrazzo/token-tools": "^2.0.0-alpha.1"
34
+ "@terrazzo/token-tools": "^2.0.0-alpha.2"
35
35
  },
36
36
  "devDependencies": {
37
37
  "dtcg-examples": "^0.3.4",
38
- "@terrazzo/cli": "^2.0.0-alpha.1",
39
- "@terrazzo/parser": "^2.0.0-alpha.1"
38
+ "@terrazzo/cli": "^2.0.0-alpha.2",
39
+ "@terrazzo/parser": "^2.0.0-alpha.2"
40
40
  },
41
41
  "scripts": {
42
42
  "build": "rolldown -c && attw --profile esm-only --pack .",