@terrazzo/plugin-sass 0.3.0 → 0.3.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.
- package/CHANGELOG.md +9 -0
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @terrazzo/plugin-sass
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`7e3d513`](https://github.com/terrazzoapp/terrazzo/commit/7e3d513e5bcde5e613cde35d367d49c6a46293a1), [`2ad079c`](https://github.com/terrazzoapp/terrazzo/commit/2ad079c06dcdb3b0241e678b1625f202a4ec92b1)]:
|
|
10
|
+
- @terrazzo/plugin-css@0.3.2
|
|
11
|
+
|
|
3
12
|
## 0.3.0
|
|
4
13
|
|
|
5
14
|
### 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.
|
|
4
|
+
"version": "0.3.1",
|
|
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://
|
|
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": "
|
|
27
|
-
"@terrazzo/plugin-css": "
|
|
26
|
+
"@terrazzo/cli": "0.x",
|
|
27
|
+
"@terrazzo/plugin-css": "0.x"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@terrazzo/token-tools": "^0.3.4"
|
|
28
31
|
},
|
|
29
32
|
"devDependencies": {
|
|
30
|
-
"@terrazzo/cli": "^0.3.
|
|
31
|
-
"@terrazzo/parser": "^0.3.
|
|
32
|
-
"@terrazzo/plugin-css": "^0.3.
|
|
33
|
-
"@terrazzo/token-tools": "^0.3.0"
|
|
33
|
+
"@terrazzo/cli": "^0.3.4",
|
|
34
|
+
"@terrazzo/parser": "^0.3.4",
|
|
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",
|