@terrazzo/token-tools 0.0.5 → 0.0.6

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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @terrazzo/token-tools
2
+
3
+ ## 0.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#285](https://github.com/terrazzoapp/terrazzo/pull/285) [`e8a0df1`](https://github.com/terrazzoapp/terrazzo/commit/e8a0df1f3b50cf7cb292bcc475aae271feae4569) Thanks [@drwpow](https://github.com/drwpow)! - Add support for multiple token files
package/dist/types.d.ts CHANGED
@@ -189,7 +189,10 @@ export interface TokenNormalizedCore {
189
189
  $description?: string;
190
190
  $extensions?: Record<string, unknown>;
191
191
  id: string;
192
- sourceNode: ObjectNode;
192
+ source: {
193
+ loc?: string;
194
+ node: ObjectNode;
195
+ };
193
196
  group: {
194
197
  $description?: string;
195
198
  $extensions?: Record<string, unknown>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@terrazzo/token-tools",
3
3
  "description": "Various utilities for token types",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "author": {
6
6
  "name": "Drew Powers",
7
7
  "email": "drew@pow.rs"