@terrazzo/plugin-css 2.0.0-beta.0 → 2.0.0-beta.1

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 +2 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -28,6 +28,8 @@
28
28
 
29
29
  - [#636](https://github.com/terrazzoapp/terrazzo/pull/636) Thanks [@geebru](https://github.com/geebru)! - Add missing CSS logical property directions for utility class generation
30
30
 
31
+ - Thanks [@drwpow](https://github.com/drwpow)! - Improve extended typography property CSS generation
32
+
31
33
  ## 0.10.4
32
34
 
33
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-css",
3
- "version": "2.0.0-beta.0",
3
+ "version": "2.0.0-beta.1",
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,17 +27,17 @@
27
27
  "directory": "./packages/plugin-css/"
28
28
  },
29
29
  "peerDependencies": {
30
- "@terrazzo/cli": "^2.0.0-beta.0",
31
- "@terrazzo/parser": "^2.0.0-beta.0"
30
+ "@terrazzo/cli": "^2.0.0-beta.1",
31
+ "@terrazzo/parser": "^2.0.0-beta.1"
32
32
  },
33
33
  "dependencies": {
34
34
  "wildcard-match": "^5.1.4",
35
- "@terrazzo/token-tools": "^2.0.0-beta.0"
35
+ "@terrazzo/token-tools": "^2.0.0-beta.1"
36
36
  },
37
37
  "devDependencies": {
38
38
  "dtcg-examples": "^1.0.2",
39
- "@terrazzo/cli": "^2.0.0-beta.0",
40
- "@terrazzo/parser": "^2.0.0-beta.0"
39
+ "@terrazzo/cli": "^2.0.0-beta.1",
40
+ "@terrazzo/parser": "^2.0.0-beta.1"
41
41
  },
42
42
  "scripts": {
43
43
  "build": "rolldown -c && attw --profile esm-only --pack .",