@cobalt-ui/core
Advanced tools
Comparing version 1.2.0 to 1.3.0
# @cobalt-ui/core | ||
## 1.3.0 | ||
### Minor Changes | ||
- [#51](https://github.com/drwpow/cobalt-ui/pull/51) [`e1e18c1`](https://github.com/drwpow/cobalt-ui/commit/e1e18c1aa0fca4f3fc915f937fe148ee56ac184f) Thanks [@drwpow](https://github.com/drwpow)! - Allow combining multiple schemas | ||
- [#51](https://github.com/drwpow/cobalt-ui/pull/51) [`e1e18c1`](https://github.com/drwpow/cobalt-ui/commit/e1e18c1aa0fca4f3fc915f937fe148ee56ac184f) Thanks [@drwpow](https://github.com/drwpow)! - Allow loading tokens as YAML | ||
## 1.2.0 | ||
@@ -4,0 +12,0 @@ |
@@ -13,3 +13,3 @@ /// <reference types="node" resolution-mode="require"/> | ||
export interface ResolvedConfig extends ParseOptions { | ||
tokens: URL; | ||
tokens: URL[]; | ||
outDir: URL; | ||
@@ -31,3 +31,3 @@ plugins: Plugin[]; | ||
/** path to tokens.json (default: "./tokens.json") */ | ||
tokens?: string; | ||
tokens?: string | string[]; | ||
/** output directory (default: "./tokens/") */ | ||
@@ -34,0 +34,0 @@ outDir?: string; |
@@ -13,3 +13,3 @@ /// <reference types="node" resolution-mode="require"/> | ||
export interface ResolvedConfig extends ParseOptions { | ||
tokens: URL; | ||
tokens: URL[]; | ||
outDir: URL; | ||
@@ -31,3 +31,3 @@ plugins: Plugin[]; | ||
/** path to tokens.json (default: "./tokens.json") */ | ||
tokens?: string; | ||
tokens?: string | string[]; | ||
/** output directory (default: "./tokens/") */ | ||
@@ -34,0 +34,0 @@ outDir?: string; |
{ | ||
"name": "@cobalt-ui/core", | ||
"description": "CLI for using the W3C design token format", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Drew Powers", |
@@ -55,3 +55,3 @@ import type {Group, ParsedToken} from './token.js'; | ||
export interface ResolvedConfig extends ParseOptions { | ||
tokens: URL; | ||
tokens: URL[]; | ||
outDir: URL; | ||
@@ -71,3 +71,3 @@ plugins: Plugin[]; | ||
/** path to tokens.json (default: "./tokens.json") */ | ||
tokens?: string; | ||
tokens?: string | string[]; | ||
/** output directory (default: "./tokens/") */ | ||
@@ -74,0 +74,0 @@ outDir?: string; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
288321