@terrazzo/plugin-sass 2.0.1 → 2.0.3

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 +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @terrazzo/plugin-sass
2
2
 
3
+ ## 2.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#726](https://github.com/terrazzoapp/terrazzo/pull/726) [`b326bd6`](https://github.com/terrazzoapp/terrazzo/commit/b326bd63b2f701707d0501675bde6d9b091de8fa) Thanks [@drwpow](https://github.com/drwpow)! - Improve token aliases where the primitive or primary has token, but aliases do not. This leads to dropped tokens in all plugins.
8
+
9
+ - Updated dependencies [[`b326bd6`](https://github.com/terrazzoapp/terrazzo/commit/b326bd63b2f701707d0501675bde6d9b091de8fa)]:
10
+ - @terrazzo/plugin-css@2.0.3
11
+ - @terrazzo/parser@2.0.3
12
+ - @terrazzo/cli@2.0.3
13
+ - @terrazzo/token-tools@2.0.3
14
+
15
+ ## 2.0.2
16
+
17
+ ### Patch Changes
18
+
19
+ - [#719](https://github.com/terrazzoapp/terrazzo/pull/719) [`2d4014f`](https://github.com/terrazzoapp/terrazzo/commit/2d4014f12de99149d19a2f733a9723daf19c39d2) Thanks [@drwpow](https://github.com/drwpow)! - plugin-css: fix bug with legacy modeSelectors resolving to default alias instead of requested mode
20
+
21
+ - Updated dependencies [[`2d4014f`](https://github.com/terrazzoapp/terrazzo/commit/2d4014f12de99149d19a2f733a9723daf19c39d2)]:
22
+ - @terrazzo/plugin-css@2.0.2
23
+ - @terrazzo/cli@2.0.2
24
+ - @terrazzo/parser@2.0.2
25
+ - @terrazzo/token-tools@2.0.2
26
+
3
27
  ## 2.0.1
4
28
 
5
29
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-sass",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "description": "Generate .scss from your DTCG design tokens JSON.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -27,17 +27,17 @@
27
27
  "directory": "packages/plugin-sass"
28
28
  },
29
29
  "peerDependencies": {
30
- "@terrazzo/cli": "^2.0.1",
31
- "@terrazzo/parser": "^2.0.1",
32
- "@terrazzo/plugin-css": "^2.0.1"
30
+ "@terrazzo/cli": "^2.0.3",
31
+ "@terrazzo/parser": "^2.0.3",
32
+ "@terrazzo/plugin-css": "^2.0.3"
33
33
  },
34
34
  "dependencies": {
35
- "@terrazzo/token-tools": "^2.0.1"
35
+ "@terrazzo/token-tools": "^2.0.3"
36
36
  },
37
37
  "devDependencies": {
38
- "@terrazzo/cli": "^2.0.1",
39
- "@terrazzo/parser": "^2.0.1",
40
- "@terrazzo/plugin-css": "^2.0.1"
38
+ "@terrazzo/cli": "^2.0.3",
39
+ "@terrazzo/parser": "^2.0.3",
40
+ "@terrazzo/plugin-css": "^2.0.3"
41
41
  },
42
42
  "scripts": {
43
43
  "build": "rolldown -c && attw --profile esm-only --pack .",