@terrazzo/plugin-css 0.1.1 → 0.2.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.
@@ -1,9 +1,9 @@
1
1
 
2
- > @terrazzo/plugin-css@0.1.1 build /home/runner/work/terrazzo/terrazzo/packages/plugin-css
2
+ > @terrazzo/plugin-css@0.2.0 build /home/runner/work/terrazzo/terrazzo/packages/plugin-css
3
3
  > pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-css dist/index.js
4
4
 
5
5
 
6
- > @terrazzo/plugin-css@0.1.1 build:ts /home/runner/work/terrazzo/terrazzo/packages/plugin-css
6
+ > @terrazzo/plugin-css@0.2.0 build:ts /home/runner/work/terrazzo/terrazzo/packages/plugin-css
7
7
  > tsc -p tsconfig.build.json
8
8
 
9
9
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @terrazzo/plugin-css
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Reconcile types with latest changes from @terrazzo/cli and @terrazzo/parser
8
+
9
+ ## 0.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#347](https://github.com/terrazzoapp/terrazzo/pull/347) [`b90287c`](https://github.com/terrazzoapp/terrazzo/commit/b90287cb13dc3bfdb24b8d6698931c7d156c3638) Thanks [@tomasfrancisco](https://github.com/tomasfrancisco)! - Add support for inset shadows
14
+
15
+ - Updated dependencies [[`b90287c`](https://github.com/terrazzoapp/terrazzo/commit/b90287cb13dc3bfdb24b8d6698931c7d156c3638)]:
16
+ - @terrazzo/token-tools@0.1.3
17
+ - @terrazzo/parser@0.1.3
18
+ - @terrazzo/cli@0.1.3
19
+
3
20
  ## 0.1.1
4
21
 
5
22
  ### Patch Changes
package/dist/lib.d.ts CHANGED
@@ -20,7 +20,7 @@ export interface CSSPluginOptions {
20
20
  export interface ModeSelector {
21
21
  /** The name of the mode to match */
22
22
  mode: string;
23
- /** (optional) Provide token IDs to match. Globs are allowed (e.g: `["color.*", "shadow.dark"]`) */
23
+ /** Provide token IDs to match. Globs are allowed (e.g: `["color.*", "shadow.dark"]`) */
24
24
  tokens?: string[];
25
25
  /** Provide CSS selectors to generate. (e.g.: `["@media (prefers-color-scheme: dark)", "[data-color-theme='dark']"]` ) */
26
26
  selectors: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/plugin-css",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "Convert DTCG tokens into CSS variables for use in any web application or native app with webview.",
5
5
  "type": "module",
6
6
  "author": {
@@ -26,12 +26,12 @@
26
26
  "@terrazzo/cli": "*"
27
27
  },
28
28
  "dependencies": {
29
- "scule": "^1.3.0",
30
- "@terrazzo/parser": "^0.1.1",
31
- "@terrazzo/token-tools": "^0.1.1"
29
+ "scule": "^1.3.0"
32
30
  },
33
31
  "devDependencies": {
34
- "@terrazzo/cli": "^0.1.1"
32
+ "@terrazzo/cli": "^0.2.8",
33
+ "@terrazzo/token-tools": "^0.2.8",
34
+ "@terrazzo/parser": "^0.2.8"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "pnpm run build:ts && pnpm -w run inject-license @terrazzo/plugin-css dist/index.js",