@terrazzo/plugin-css 0.6.0 → 0.7.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 +22 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @terrazzo/plugin-css
2
2
 
3
+ ## 0.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#468](https://github.com/terrazzoapp/terrazzo/pull/468) [`2c28957`](https://github.com/terrazzoapp/terrazzo/commit/2c289579bee73eabcdf648fbdb99071fece9c018) Thanks [@drwpow](https://github.com/drwpow)! - When downsampling colors for sRGB gamut, preserve the originally-authored colorspace
8
+
9
+ - Updated dependencies [[`2c28957`](https://github.com/terrazzoapp/terrazzo/commit/2c289579bee73eabcdf648fbdb99071fece9c018)]:
10
+ - @terrazzo/token-tools@0.7.1
11
+ - @terrazzo/cli@0.7.1
12
+
13
+ ## 0.7.0
14
+
15
+ ### Minor Changes
16
+
17
+ - [#454](https://github.com/terrazzoapp/terrazzo/pull/454) [`44ff082`](https://github.com/terrazzoapp/terrazzo/commit/44ff082ec3cc4034dcbcf7702f9676a631c99dde) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: the new color token object format uses "components" instead of "channels". Please update your tokens accordingly.
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [[`44ff082`](https://github.com/terrazzoapp/terrazzo/commit/44ff082ec3cc4034dcbcf7702f9676a631c99dde)]:
22
+ - @terrazzo/token-tools@0.7.0
23
+ - @terrazzo/cli@0.7.0
24
+
3
25
  ## 0.6.0
4
26
 
5
27
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-css",
3
- "version": "0.6.0",
3
+ "version": "0.7.1",
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": {
@@ -23,15 +23,15 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "peerDependencies": {
26
- "@terrazzo/cli": "0.x"
26
+ "@terrazzo/cli": "^0.7.0"
27
27
  },
28
28
  "dependencies": {
29
- "@terrazzo/token-tools": "^0.6.0"
29
+ "@terrazzo/token-tools": "^0.7.1"
30
30
  },
31
31
  "devDependencies": {
32
- "dtcg-examples": "^0.1.3",
33
- "@terrazzo/cli": "^0.6.0",
34
- "@terrazzo/parser": "^0.6.0"
32
+ "dtcg-examples": "^0.2.0",
33
+ "@terrazzo/cli": "^0.7.1",
34
+ "@terrazzo/parser": "^0.7.1"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-css dist/index.js",