@terrazzo/plugin-sass 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 +24 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @terrazzo/plugin-sass
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
+ - @terrazzo/plugin-css@0.7.1
13
+
14
+ ## 0.7.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [#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.
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [[`44ff082`](https://github.com/terrazzoapp/terrazzo/commit/44ff082ec3cc4034dcbcf7702f9676a631c99dde)]:
23
+ - @terrazzo/token-tools@0.7.0
24
+ - @terrazzo/cli@0.7.0
25
+ - @terrazzo/plugin-css@0.7.0
26
+
3
27
  ## 0.6.0
4
28
 
5
29
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-sass",
3
3
  "description": "Generate scss/sass from your design tokens schema (requires @terrazzo/cli)",
4
- "version": "0.6.0",
4
+ "version": "0.7.1",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "Drew Powers",
@@ -23,16 +23,16 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "peerDependencies": {
26
- "@terrazzo/cli": "0.x",
27
- "@terrazzo/plugin-css": "0.x"
26
+ "@terrazzo/cli": "^0.7.0",
27
+ "@terrazzo/plugin-css": "^0.7.0"
28
28
  },
29
29
  "dependencies": {
30
- "@terrazzo/token-tools": "^0.6.0"
30
+ "@terrazzo/token-tools": "^0.7.1"
31
31
  },
32
32
  "devDependencies": {
33
- "@terrazzo/cli": "^0.6.0",
34
- "@terrazzo/parser": "^0.6.0",
35
- "@terrazzo/plugin-css": "^0.6.0"
33
+ "@terrazzo/cli": "^0.7.1",
34
+ "@terrazzo/parser": "^0.7.1",
35
+ "@terrazzo/plugin-css": "^0.7.1"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-sass dist/index.js",