@terrazzo/plugin-sass 0.0.2 → 0.1.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.
@@ -0,0 +1,16 @@
1
+
2
+ > @terrazzo/plugin-sass@0.1.0 build /home/runner/work/terrazzo/terrazzo/packages/plugin-sass
3
+ > pnpm run build:clean && pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-sass dist/index.js
4
+
5
+
6
+ > @terrazzo/plugin-sass@0.1.0 build:clean /home/runner/work/terrazzo/terrazzo/packages/plugin-sass
7
+ > del-cli dist
8
+
9
+
10
+ > @terrazzo/plugin-sass@0.1.0 build:ts /home/runner/work/terrazzo/terrazzo/packages/plugin-sass
11
+ > tsc -p tsconfig.build.json
12
+
13
+
14
+ > @terrazzo/monorepo@ inject-license /home/runner/work/terrazzo/terrazzo
15
+ > node scripts/inject-license.js "@terrazzo/plugin-sass" "dist/index.js"
16
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @terrazzo/plugin-sass
2
2
 
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#319](https://github.com/terrazzoapp/terrazzo/pull/319) [`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32) Thanks [@drwpow](https://github.com/drwpow)! - ⚠️ Breaking change: dimension and duration tokens normalize to object syntax in plugins (following upcoming changes in DTCG spec; see https://github.com/design-tokens/community-group/pull/244).
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`e7f272d`](https://github.com/terrazzoapp/terrazzo/commit/e7f272defcd889f5a410fdbd30497cf704671b32)]:
12
+ - @terrazzo/token-tools@0.1.0
13
+ - @terrazzo/plugin-css@0.1.0
14
+ - @terrazzo/cli@0.1.0
15
+
16
+ ## 0.0.3
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [[`d0a9df4`](https://github.com/terrazzoapp/terrazzo/commit/d0a9df43ccabd10ea338e12cbfcfbd7e00952d28)]:
21
+ - @terrazzo/cli@0.0.17
22
+
3
23
  ## 0.0.2
4
24
 
5
25
  ### Patch 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.0.2",
4
+ "version": "0.1.0",
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.0.12",
27
- "@terrazzo/plugin-css": "^0.0.10"
26
+ "@terrazzo/cli": "^0.1.0",
27
+ "@terrazzo/plugin-css": "^0.1.0"
28
28
  },
29
29
  "dependencies": {
30
- "@terrazzo/token-tools": "^0.0.6"
30
+ "@terrazzo/token-tools": "^0.1.0"
31
31
  },
32
32
  "devDependencies": {
33
- "@terrazzo/cli": "^0.0.12",
34
- "@terrazzo/parser": "^0.0.12",
35
- "@terrazzo/plugin-css": "^0.0.10"
33
+ "@terrazzo/cli": "^0.1.0",
34
+ "@terrazzo/parser": "^0.1.0",
35
+ "@terrazzo/plugin-css": "^0.1.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "pnpm run build:clean && pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-sass dist/index.js",