tm-grammars 1.15.0 → 1.15.1
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.
- package/README.md +1 -1
- package/grammars/ts-tags.json +10 -0
- package/index.js +10 -5
- package/package.json +1 -1
- package/grammars/ts-embed.json +0 -10
package/README.md
CHANGED
|
@@ -203,7 +203,7 @@ import { grammars } from 'tm-grammars'
|
|
|
203
203
|
| `terraform` | `tf` `tfvars` | [hashicorp/syntax](https://github.com/hashicorp/syntax/blob/c693badea4d460d1c05b8d2ab0c88bad143da3f1/syntaxes/terraform.tmGrammar.json) | [MPL-2.0](https://raw.githubusercontent.com/hashicorp/syntax/main/LICENSE) | | 12.58 kB |
|
|
204
204
|
| `tex` | | [microsoft/vscode](https://github.com/microsoft/vscode/blob/b8e3432a0b7dd11ffd0c832fad6a6c51e809013c/extensions/latex/syntaxes/TeX.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | `r` | 8.77 kB |
|
|
205
205
|
| `toml` | | [textmate/toml.tmbundle](https://github.com/textmate/toml.tmbundle/blob/e82b64c1e86396220786846201e9aa3f0a2d9ca2/Syntaxes/TOML.tmLanguage) | | | 6.26 kB |
|
|
206
|
-
| `ts-
|
|
206
|
+
| `ts-tags` | `lit` | - | | `typescript` `es-tag-css` `es-tag-glsl` `es-tag-html` `es-tag-sql` `es-tag-xml` | 121.00 B |
|
|
207
207
|
| `tsv` | | [mechatroner/vscode_rainbow_csv](https://github.com/mechatroner/vscode_rainbow_csv/blob/00d4c947f1bbe6a4a73599bd97fb31bdfbe262f3/syntaxes/tsv.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/mechatroner/vscode_rainbow_csv/master/LICENSE) | | 633.00 B |
|
|
208
208
|
| `tsx` | | [microsoft/vscode](https://github.com/microsoft/vscode/blob/35d97bc7e439fce0f50f42074041ab2d8571b20a/extensions/typescript-basics/syntaxes/TypeScriptReact.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | | 171.16 kB |
|
|
209
209
|
| `turtle` | | [stardog-union/stardog-vsc](https://github.com/stardog-union/stardog-vsc/blob/3f1364b08bdbf4b4d77f123682db7d2b708b2f6e/stardog-rdf-grammars/syntaxes/turtle.tmLanguage.json) | | | 3.50 kB |
|
package/index.js
CHANGED
|
@@ -2937,16 +2937,21 @@ export const grammars = [
|
|
|
2937
2937
|
aliases: [
|
|
2938
2938
|
'lit',
|
|
2939
2939
|
],
|
|
2940
|
-
byteSize:
|
|
2940
|
+
byteSize: 121,
|
|
2941
2941
|
categories: [
|
|
2942
2942
|
'web',
|
|
2943
2943
|
],
|
|
2944
|
-
displayName: 'TypeScript with
|
|
2944
|
+
displayName: 'TypeScript with Tags',
|
|
2945
2945
|
embedded: [
|
|
2946
2946
|
'typescript',
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2947
|
+
'es-tag-css',
|
|
2948
|
+
'es-tag-glsl',
|
|
2949
|
+
'es-tag-html',
|
|
2950
|
+
'es-tag-sql',
|
|
2951
|
+
'es-tag-xml',
|
|
2952
|
+
],
|
|
2953
|
+
name: 'ts-tags',
|
|
2954
|
+
scopeName: 'source.ts.tags',
|
|
2950
2955
|
},
|
|
2951
2956
|
{
|
|
2952
2957
|
byteSize: 633,
|
package/package.json
CHANGED