@malloydata/malloy 0.0.93-dev231003232925 → 0.0.93

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.
Files changed (2) hide show
  1. package/dist/tags.js +3 -1
  2. package/package.json +1 -1
package/dist/tags.js CHANGED
@@ -90,7 +90,9 @@ class Tag {
90
90
  * @returns Something shaped like { tag: Tag , log: ParseErrors[] }
91
91
  */
92
92
  static fromTagline(str, extending, ...importing) {
93
- return parseTagline(str, extending, importing, __filename, 0, 0);
93
+ // TODO -- Figure out the right thing about the URL
94
+ const url = `internal://tag-parse/from-tag-line?${encodeURIComponent(str)}`;
95
+ return parseTagline(str, extending, importing, url, 0, 0);
94
96
  }
95
97
  static addModelScope(spec, modelScope) {
96
98
  const useSpec = spec ? { ...spec } : {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.93-dev231003232925",
3
+ "version": "0.0.93",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",