@malloydata/malloy 0.0.61-dev230724132807 → 0.0.61-dev230724154311

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 +2 -2
  2. package/package.json +1 -1
package/dist/tags.js CHANGED
@@ -143,11 +143,11 @@ function tokenize(src) {
143
143
  continue;
144
144
  }
145
145
  if (src[0] === '"') {
146
- const matchString = src.match(/^"(\\"|[^"])*"/);
146
+ const matchString = src.match(/^"(\\.|[^"\\])*"/);
147
147
  if (!matchString) {
148
148
  break;
149
149
  }
150
- parts.push(matchString[0]);
150
+ parts.push(matchString[0].replace(/\\/g, ''));
151
151
  src = src.slice(matchString[0].length);
152
152
  continue;
153
153
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.61-dev230724132807",
3
+ "version": "0.0.61-dev230724154311",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",