Skip to content

Commit 2ad06de

Browse files
authored
Version packages (#444)
* Version packages * Lil improvement
1 parent bcf3918 commit 2ad06de

File tree

8 files changed

+29
-11
lines changed

8 files changed

+29
-11
lines changed

.changeset/violet-icons-turn.md

-7
This file was deleted.

packages/cli/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @terrazzo/cli
22

3+
## 0.6.3
4+
5+
### Patch Changes
6+
7+
- [#443](https://github.com/terrazzoapp/terrazzo/pull/443) [`8cc558f`](https://github.com/terrazzoapp/terrazzo/commit/8cc558ff98cef4eb36240918aa594905dfeb11ee) Thanks [@drwpow](https://github.com/drwpow)! - Bugfix: allow resolving from node_modules in @terrazzo/cli (note: @terrazzo/parser/JS API still runs in browser, so it still can’t resolve npm modules).
8+
9+
- Updated dependencies [[`8cc558f`](https://github.com/terrazzoapp/terrazzo/commit/8cc558ff98cef4eb36240918aa594905dfeb11ee)]:
10+
- @terrazzo/parser@0.6.3
11+
- @terrazzo/token-tools@0.6.3
12+
313
## 0.6.2
414

515
### Patch Changes

packages/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@terrazzo/cli",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.",
55
"type": "module",
66
"author": {

packages/cli/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function defineConfig(config: Config): ConfigInit {
1515
normalizedConfig.tokens = (
1616
Array.isArray(normalizedConfig.tokens) ? normalizedConfig.tokens : [normalizedConfig.tokens]
1717
).map((tokenPath) => {
18-
if (tokenPath.startsWith('.') || /^https?:\/\//.test(tokenPath)) {
18+
if (tokenPath.startsWith('.') || /^(https?|file):\/\//i.test(tokenPath)) {
1919
return tokenPath;
2020
}
2121
try {

packages/parser/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @terrazzo/parser
22

3+
## 0.6.3
4+
5+
### Patch Changes
6+
7+
- [#443](https://github.com/terrazzoapp/terrazzo/pull/443) [`8cc558f`](https://github.com/terrazzoapp/terrazzo/commit/8cc558ff98cef4eb36240918aa594905dfeb11ee) Thanks [@drwpow](https://github.com/drwpow)! - Bugfix: allow resolving from node_modules in @terrazzo/cli (note: @terrazzo/parser/JS API still runs in browser, so it still can’t resolve npm modules).
8+
9+
- Updated dependencies [[`8cc558f`](https://github.com/terrazzoapp/terrazzo/commit/8cc558ff98cef4eb36240918aa594905dfeb11ee)]:
10+
- @terrazzo/token-tools@0.6.3
11+
312
## 0.6.2
413

514
### Patch Changes

packages/parser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@terrazzo/parser",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "Parser/validator for the Design Tokens Community Group (DTCG) standard.",
55
"type": "module",
66
"author": {

packages/token-tools/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @terrazzo/token-tools
22

3+
## 0.6.3
4+
5+
### Patch Changes
6+
7+
- [#443](https://github.com/terrazzoapp/terrazzo/pull/443) [`8cc558f`](https://github.com/terrazzoapp/terrazzo/commit/8cc558ff98cef4eb36240918aa594905dfeb11ee) Thanks [@drwpow](https://github.com/drwpow)! - Bugfix: allow resolving from node_modules in @terrazzo/cli (note: @terrazzo/parser/JS API still runs in browser, so it still can’t resolve npm modules).
8+
39
## 0.6.2
410

511
### Patch Changes

packages/token-tools/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@terrazzo/token-tools",
33
"description": "Various utilities for token types",
4-
"version": "0.6.2",
4+
"version": "0.6.3",
55
"author": {
66
"name": "Drew Powers",
77
"email": "[email protected]"

0 commit comments

Comments
 (0)