@malloydata/syntax-highlight 0.0.315 → 0.0.316

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.
@@ -133,7 +133,7 @@ export const monarch: Monaco.IMonarchLanguage = {
133
133
  [/'/, {next: '@string_quoted_single_end', token: 'string.quoted'}],
134
134
  [/"/, {next: '@string_quoted_double_end', token: 'string.quoted'}],
135
135
  [/"""/, {next: '@string_quoted_triple_end', token: 'string.quoted'}],
136
- [/[r|\/]'/, {next: '@string_regexp_end', token: 'string.regexp'}],
136
+ [/[r\/]'/, {next: '@string_regexp_end', token: 'string.regexp'}],
137
137
  ],
138
138
  string_quoted_single_end: [
139
139
  [/'/, {next: '@pop', token: 'string.quoted'}],
@@ -261,7 +261,7 @@
261
261
  "name": "string.quoted.triple"
262
262
  },
263
263
  {
264
- "begin": "(?i)[r|/]'",
264
+ "begin": "(?i)[r/]'",
265
265
  "end": "'",
266
266
  "name": "string.regexp",
267
267
  "patterns": [{ "include": "#regex-escapes" }]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/syntax-highlight",
3
- "version": "0.0.315",
3
+ "version": "0.0.316",
4
4
  "description": "A package to simplify the process of developing, testing, and syncnig Malloy syntax highlighting grammars",
5
5
  "files": [
6
6
  "grammars/**/*.tmGrammar.json",