-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
119 additions
and
52 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@cobalt-ui/cli", | ||
"description": "CLI for managing design tokens using the Design Tokens Community Group (DTCG) standard and generating code for any platform via plugins.", | ||
"version": "1.6.2", | ||
"version": "1.7.0", | ||
"author": { | ||
"name": "Drew Powers", | ||
"email": "[email protected]" | ||
|
@@ -45,8 +45,8 @@ | |
"test:ts": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@cobalt-ui/core": "^1.6.1", | ||
"@cobalt-ui/utils": "^1.2.2", | ||
"@cobalt-ui/core": "^1.7.0", | ||
"@cobalt-ui/utils": "^1.2.3", | ||
"chokidar": "^3.5.3", | ||
"culori": "^3.3.0", | ||
"dotenv": "^16.4.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@cobalt-ui/core", | ||
"description": "Parser/validator for the Design Tokens Community Group (DTCG) standard.", | ||
"version": "1.6.1", | ||
"version": "1.7.0", | ||
"author": { | ||
"name": "Drew Powers", | ||
"email": "[email protected]" | ||
|
@@ -42,7 +42,7 @@ | |
"test:ts": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@cobalt-ui/utils": "^1.2.2", | ||
"@cobalt-ui/utils": "^1.2.3", | ||
"@types/culori": "^2.0.4", | ||
"culori": "^4.0.1" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
{ | ||
"name": "@cobalt-ui/plugin-css", | ||
"description": "Generate CSS from your design tokens schema (requires @cobalt-ui/cli)", | ||
"version": "1.7.0", | ||
"version": "1.7.1", | ||
"author": { | ||
"name": "Drew Powers", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": ["cobalt", "design tokens", "design tokens community group", "design tokens format module", "design system", "dtcg", "w3c design tokens", "css"], | ||
"keywords": [ | ||
"cobalt", | ||
"design tokens", | ||
"design tokens community group", | ||
"design tokens format module", | ||
"design system", | ||
"dtcg", | ||
"w3c design tokens", | ||
"css" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/drwpow/cobalt-ui.git", | ||
|
@@ -27,10 +36,10 @@ | |
"test:ts": "tsc --noEmit" | ||
}, | ||
"peerDependencies": { | ||
"@cobalt-ui/cli": "^1.6.2" | ||
"@cobalt-ui/cli": "^1.x" | ||
}, | ||
"dependencies": { | ||
"@cobalt-ui/utils": "^1.2.2", | ||
"@cobalt-ui/utils": "^1.2.3", | ||
"@types/culori": "^2.0.4", | ||
"@types/mime": "^3.0.4", | ||
"culori": "^3.3.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,15 @@ | |
"name": "Drew Powers", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": ["cobalt", "design tokens", "design tokens community group", "design tokens format module", "design system", "dtcg", "w3c design tokens"], | ||
"keywords": [ | ||
"cobalt", | ||
"design tokens", | ||
"design tokens community group", | ||
"design tokens format module", | ||
"design system", | ||
"dtcg", | ||
"w3c design tokens" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/drwpow/cobalt-ui.git", | ||
|
@@ -30,7 +38,7 @@ | |
"@cobalt-ui/cli": "1.x" | ||
}, | ||
"dependencies": { | ||
"@cobalt-ui/utils": "^1.2.2" | ||
"@cobalt-ui/utils": "^1.2.3" | ||
}, | ||
"devDependencies": { | ||
"@cobalt-ui/cli": "workspace:^", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
{ | ||
"name": "@cobalt-ui/plugin-sass", | ||
"description": "Generate scss/sass from your design tokens schema (requires @cobalt-ui/cli)", | ||
"version": "1.3.3", | ||
"version": "1.7.1", | ||
"author": { | ||
"name": "Drew Powers", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": ["cobalt", "design tokens", "design tokens community group", "design system", "dtcg", "w3c", "css", "sass"], | ||
"keywords": [ | ||
"cobalt", | ||
"design tokens", | ||
"design tokens community group", | ||
"design system", | ||
"dtcg", | ||
"w3c", | ||
"css", | ||
"sass" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/drwpow/cobalt-ui.git", | ||
|
@@ -28,10 +37,10 @@ | |
}, | ||
"peerDependencies": { | ||
"@cobalt-ui/cli": "^1.x", | ||
"@cobalt-ui/plugin-css": "^1.7.0" | ||
"@cobalt-ui/plugin-css": "^1.7.1" | ||
}, | ||
"dependencies": { | ||
"@cobalt-ui/utils": "^1.2.2", | ||
"@cobalt-ui/utils": "^1.2.3", | ||
"@types/mime": "^3.0.4", | ||
"mime": "^3.0.0", | ||
"svgo": "^3.2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
{ | ||
"name": "@cobalt-ui/plugin-tailwind", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"author": { | ||
"name": "Drew Powers", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": ["cobalt", "design tokens", "design tokens community group", "design tokens format module", "design system", "dtcg", "w3c", "tailwind", "css"], | ||
"keywords": [ | ||
"cobalt", | ||
"design tokens", | ||
"design tokens community group", | ||
"design tokens format module", | ||
"design system", | ||
"dtcg", | ||
"w3c", | ||
"tailwind", | ||
"css" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/drwpow/cobalt-ui.git", | ||
|
@@ -29,8 +39,8 @@ | |
"tailwindcss": "*" | ||
}, | ||
"dependencies": { | ||
"@cobalt-ui/plugin-css": "^1.7.0", | ||
"@cobalt-ui/utils": "^1.2.2" | ||
"@cobalt-ui/plugin-css": "^1.7.1", | ||
"@cobalt-ui/utils": "^1.2.3" | ||
}, | ||
"devDependencies": { | ||
"@cobalt-ui/cli": "workspace:^", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@cobalt-ui/utils", | ||
"description": "Generic codegen utilities", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"author": { | ||
"name": "Drew Powers", | ||
"email": "[email protected]" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.