@terrazzo/cli 0.7.1 → 0.7.2

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 +6 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @terrazzo/cli
2
2
 
3
+ ## 0.7.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#477](https://github.com/terrazzoapp/terrazzo/pull/477) [`0e24810`](https://github.com/terrazzoapp/terrazzo/commit/0e248106b313e363edcfb1a27d11de619133af03) Thanks [@dzonatan](https://github.com/dzonatan)! - [plugin-css] add `baseSelector` option to css plugin to allow changing the root selector
8
+
3
9
  ## 0.7.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/cli",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.",
5
5
  "type": "module",
6
6
  "author": {
@@ -54,7 +54,7 @@
54
54
  "picocolors": "^1.1.1",
55
55
  "yaml-to-momoa": "^0.0.6",
56
56
  "@terrazzo/parser": "^0.7.1",
57
- "@terrazzo/token-tools": "^0.7.1"
57
+ "@terrazzo/token-tools": "^0.7.2"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@vitejs/plugin-react-swc": "^3.9.0",
@@ -67,9 +67,9 @@
67
67
  "build:lab": "vite build",
68
68
  "dev": "tsc -p tsconfig.build.json -w",
69
69
  "format": "biome check --fix --unsafe .",
70
- "lint": "biome check .",
71
- "test": "pnpm --filter @terrazzo/cli run \"/^test:.*/\"",
72
- "test:js": "vitest run",
73
- "test:ts": "tsc --noEmit"
70
+ "lint": "pnpm --filter @terrazzo/cli run \"/^lint:.*/\"",
71
+ "lint:js": "biome check .",
72
+ "lint:ts": "tsc --noEmit",
73
+ "test": "vitest run"
74
74
  }
75
75
  }