@terrazzo/parser 0.2.6 → 0.2.7

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @terrazzo/parser@0.2.6 build /home/runner/work/terrazzo/terrazzo/packages/parser
2
+ > @terrazzo/parser@0.2.7 build /home/runner/work/terrazzo/terrazzo/packages/parser
3
3
  > tsc -p tsconfig.build.json
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @terrazzo/parser
2
2
 
3
+ ## 0.2.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#376](https://github.com/terrazzoapp/terrazzo/pull/376) [`059b62a`](https://github.com/terrazzoapp/terrazzo/commit/059b62a95d1a7ec9667baef3dc695200a454eb61) Thanks [@drwpow](https://github.com/drwpow)! - Loosen up source type for parse()
8
+
9
+ - Updated dependencies [[`059b62a`](https://github.com/terrazzoapp/terrazzo/commit/059b62a95d1a7ec9667baef3dc695200a454eb61)]:
10
+ - @terrazzo/token-tools@0.2.7
11
+
3
12
  ## 0.2.6
4
13
 
5
14
  ### Patch Changes
package/dist/types.d.ts CHANGED
@@ -81,7 +81,7 @@ export interface ConfigOptions {
81
81
  }
82
82
  export interface InputSource {
83
83
  filename?: URL;
84
- src: string;
84
+ src: any;
85
85
  document: DocumentNode;
86
86
  }
87
87
  export interface LintNotice {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrazzo/parser",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Parser/validator for the Design Tokens Community Group (DTCG) standard.",
5
5
  "type": "module",
6
6
  "author": {
@@ -40,7 +40,7 @@
40
40
  "scule": "^1.3.0",
41
41
  "wildcard-match": "^5.1.3",
42
42
  "yaml": "^2.6.1",
43
- "@terrazzo/token-tools": "^0.2.6"
43
+ "@terrazzo/token-tools": "^0.2.7"
44
44
  },
45
45
  "devDependencies": {
46
46
  "esbuild": "^0.23.1",
package/src/types.ts CHANGED
@@ -91,7 +91,7 @@ export interface ConfigOptions {
91
91
 
92
92
  export interface InputSource {
93
93
  filename?: URL;
94
- src: string;
94
+ src: any;
95
95
  document: DocumentNode;
96
96
  }
97
97