@terrazzo/plugin-sass 0.3.0 → 0.4.0

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 +21 -0
  2. package/package.json +10 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @terrazzo/plugin-sass
2
2
 
3
+ ## 0.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#416](https://github.com/terrazzoapp/terrazzo/pull/416) [`822c956`](https://github.com/terrazzoapp/terrazzo/commit/822c95666c18da1c591ee232e6f62cc1b1ae968d) Thanks [@drwpow](https://github.com/drwpow)! - [cli,parser,plugin-css,token-tools] ⚠️ Breaking change: CSS variables updated to closer match Cobalt 1.0 behavior
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`822c956`](https://github.com/terrazzoapp/terrazzo/commit/822c95666c18da1c591ee232e6f62cc1b1ae968d), [`822c956`](https://github.com/terrazzoapp/terrazzo/commit/822c95666c18da1c591ee232e6f62cc1b1ae968d)]:
12
+ - @terrazzo/token-tools@0.4.0
13
+ - @terrazzo/cli@0.4.0
14
+
15
+ ## 0.3.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [#411](https://github.com/terrazzoapp/terrazzo/pull/411) [`2ad079c`](https://github.com/terrazzoapp/terrazzo/commit/2ad079c06dcdb3b0241e678b1625f202a4ec92b1) Thanks [@drwpow](https://github.com/drwpow)! - Fix bug in pnpm workspaces
20
+
21
+ - Updated dependencies [[`7e3d513`](https://github.com/terrazzoapp/terrazzo/commit/7e3d513e5bcde5e613cde35d367d49c6a46293a1), [`2ad079c`](https://github.com/terrazzoapp/terrazzo/commit/2ad079c06dcdb3b0241e678b1625f202a4ec92b1)]:
22
+ - @terrazzo/plugin-css@0.3.2
23
+
3
24
  ## 0.3.0
4
25
 
5
26
  ### 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.3.0",
4
+ "version": "0.4.0",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "Drew Powers",
@@ -15,7 +15,7 @@
15
15
  "sass"
16
16
  ],
17
17
  "main": "./dist/index.js",
18
- "homepage": "https://terrazzoapp.com/docs/cli/integrations/sass",
18
+ "homepage": "https://terrazzo.app/docs/cli/integrations/sass",
19
19
  "repository": {
20
20
  "type": "git",
21
21
  "url": "https://github.com/terrazzoapp/terrazzo.git",
@@ -23,14 +23,16 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "peerDependencies": {
26
- "@terrazzo/cli": "^0.3.0",
27
- "@terrazzo/plugin-css": "^0.3.0"
26
+ "@terrazzo/cli": "0.x",
27
+ "@terrazzo/plugin-css": "0.x"
28
+ },
29
+ "dependencies": {
30
+ "@terrazzo/token-tools": "^0.4.0"
28
31
  },
29
32
  "devDependencies": {
30
- "@terrazzo/cli": "^0.3.0",
31
- "@terrazzo/parser": "^0.3.0",
32
- "@terrazzo/plugin-css": "^0.3.0",
33
- "@terrazzo/token-tools": "^0.3.0"
33
+ "@terrazzo/cli": "^0.4.0",
34
+ "@terrazzo/parser": "^0.4.0",
35
+ "@terrazzo/plugin-css": "^0.3.2"
34
36
  },
35
37
  "scripts": {
36
38
  "build": "pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-sass dist/index.js",