@malloydata/syntax-highlight 0.0.281 → 0.0.283

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.
@@ -201,6 +201,7 @@ export const monarch: Monaco.IMonarchLanguage = {
201
201
  [/\bexcept\b/, 'keyword.control.except'],
202
202
  [/\bsource\b/, 'keyword.control.source'],
203
203
  [/\bgroup_by\b/, 'keyword.control.group_by'],
204
+ [/\bdrill\b/, 'keyword.control.drill'],
204
205
  [/\bgrouped_by\b/, 'keyword.control.grouped_by'],
205
206
  [/\bhaving\b/, 'keyword.control.having'],
206
207
  [/\bindex\b/, 'keyword.control.index'],
@@ -386,6 +386,10 @@
386
386
  "match": "(?i)\\bgroup_by\\b",
387
387
  "name": "keyword.control.group_by"
388
388
  },
389
+ {
390
+ "match": "(?i)\\bdrill\\b",
391
+ "name": "keyword.control.drill"
392
+ },
389
393
  {
390
394
  "match": "(?i)\\bgrouped_by\\b",
391
395
  "name": "keyword.control.grouped_by"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/syntax-highlight",
3
- "version": "0.0.281",
3
+ "version": "0.0.283",
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",