miki-template 1.2.0 → 1.3.3
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/.github/release-notes/v1.3.1.md +55 -0
- package/CHANGELOG.md +72 -0
- package/README.md +43 -26
- package/assets/banner.png +0 -0
- package/benchmarks/stress.mjs +647 -0
- package/dir/base.html +23 -0
- package/dir/cmpnt.html +11 -0
- package/dir/footer.html +3 -0
- package/dir/home.html +80 -0
- package/dir/navbar.html +9 -0
- package/docs/api.md +20 -3
- package/docs/filters.md +301 -133
- package/docs/partialdef.md +30 -1
- package/docs/tags.md +63 -0
- package/docs/usage.md +50 -3
- package/eslint.config.mjs +9 -1
- package/ex.mjs +33 -0
- package/miki-template-extension/.github/workflows/ci.yml +116 -0
- package/miki-template-extension/.vscodeignore +7 -0
- package/miki-template-extension/CHANGELOG.md +99 -0
- package/miki-template-extension/README.md +244 -53
- package/miki-template-extension/extension.js +1013 -0
- package/miki-template-extension/icon.png +0 -0
- package/miki-template-extension/miki-template-1.7.1.vsix +0 -0
- package/miki-template-extension/package.json +244 -10
- package/miki-template-extension/snippets/miki-template.json +612 -72
- package/miki-template-extension/syntaxes/language-configuration.json +101 -13
- package/miki-template-extension/syntaxes/miki-template.tmLanguage.json +270 -61
- package/miki-template-extension/tests/grammar-tests.json +162 -0
- package/miki-template-extension/tests/run-grammar-tests.js +82 -0
- package/package.json +7 -4
- package/scripts/build-vsix.js +129 -0
- package/scripts/build-vsix.ps1 +15 -0
- package/src/cache.js +41 -2
- package/src/context.js +9 -5
- package/src/context_processors.js +9 -2
- package/src/esm.mjs +12 -0
- package/src/filters.js +472 -24
- package/src/index.js +571 -85
- package/src/lexer.js +76 -54
- package/src/libraries.js +134 -3
- package/src/parser.js +22 -2
- package/src/security.js +4 -2
- package/src/tags/control.js +150 -21
- package/src/tags/extra.js +154 -0
- package/src/tags/i18n.js +49 -23
- package/src/tags/inheritance.js +142 -23
- package/src/tags/util.js +102 -24
- package/tests/esm.test.mjs +37 -2
- package/tests/filters.test.js +155 -0
- package/tests/integration/README.md +32 -0
- package/tests/integration/features.test.cjs +1681 -0
- package/tests/integration/features.test.mjs +1697 -0
- package/tests/integration/templates/base.miki +6 -0
- package/tests/integration/templates/child.miki +6 -0
- package/tests/integration/templates/index.html +17 -0
- package/tests/parser.test.js +5 -3
- package/tests/partialdef.test.js +40 -1
- package/tests/tags.test.js +30 -0
- package/miki-template-1.2.0.vsix +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -1,21 +1,65 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "miki-template",
|
|
3
|
-
"displayName": "miki
|
|
4
|
-
"description": "Django-
|
|
5
|
-
"version": "1.
|
|
3
|
+
"displayName": "miki template",
|
|
4
|
+
"description": "The ultimate Django & miki-template VS Code extension. Syntax highlighting, intelligent completions, hover docs, validation, go-to-definition, inlay hints, color decorations, code actions, and more.",
|
|
5
|
+
"version": "1.7.1",
|
|
6
6
|
"engines": {
|
|
7
|
-
"vscode": "^1.
|
|
7
|
+
"vscode": "^1.75.0"
|
|
8
|
+
},
|
|
9
|
+
"main": "./extension.js",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "npm run test:grammar && npm run lint",
|
|
12
|
+
"test:grammar": "node tests/run-grammar-tests.js",
|
|
13
|
+
"lint": "eslint extension.js || echo 'ESLint not installed'",
|
|
14
|
+
"validate": "node -e \"JSON.parse(require('fs').readFileSync('package.json'))\" && echo 'package.json valid'",
|
|
15
|
+
"package": "rm -f *.vsix && vsce package --no-dependencies",
|
|
16
|
+
"publish": "vsce publish",
|
|
17
|
+
"watch": "npm run package && code --install-extension miki-template-*.vsix"
|
|
8
18
|
},
|
|
9
19
|
"categories": [
|
|
10
20
|
"Programming Languages",
|
|
11
|
-
"Snippets"
|
|
21
|
+
"Snippets",
|
|
22
|
+
"Formatters",
|
|
23
|
+
"Extension Packs"
|
|
24
|
+
],
|
|
25
|
+
"keywords": [
|
|
26
|
+
"django",
|
|
27
|
+
"django-template",
|
|
28
|
+
"template",
|
|
29
|
+
"miki",
|
|
30
|
+
"miki-template",
|
|
31
|
+
"html",
|
|
32
|
+
"express",
|
|
33
|
+
"templating",
|
|
34
|
+
"syntax-highlighting",
|
|
35
|
+
"snippets",
|
|
36
|
+
"autocomplete",
|
|
37
|
+
"hover",
|
|
38
|
+
"intellisense",
|
|
39
|
+
"code-actions",
|
|
40
|
+
"color-decorations",
|
|
41
|
+
"inlay-hints",
|
|
42
|
+
"bracket-matching"
|
|
43
|
+
],
|
|
44
|
+
"activationEvents": [
|
|
45
|
+
"onLanguage:miki-template",
|
|
46
|
+
"onLanguage:django-html",
|
|
47
|
+
"workspaceContains:**/*.miki",
|
|
48
|
+
"workspaceContains:**/*.django"
|
|
12
49
|
],
|
|
13
50
|
"contributes": {
|
|
14
51
|
"languages": [
|
|
15
52
|
{
|
|
16
53
|
"id": "miki-template",
|
|
17
|
-
"aliases": ["miki-template", "miki", "django-template"],
|
|
54
|
+
"aliases": ["miki-template", "miki", "miki template", "django-template"],
|
|
18
55
|
"extensions": [".miki", ".miki-template"],
|
|
56
|
+
"firstLine": "^#\\?\\s*.*django",
|
|
57
|
+
"configuration": "./language-configuration.json"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "django-html",
|
|
61
|
+
"aliases": ["Django HTML", "django-html", "django template"],
|
|
62
|
+
"extensions": [".django", ".dj"],
|
|
19
63
|
"configuration": "./language-configuration.json"
|
|
20
64
|
}
|
|
21
65
|
],
|
|
@@ -24,8 +68,26 @@
|
|
|
24
68
|
"language": "miki-template",
|
|
25
69
|
"scopeName": "text.html.miki",
|
|
26
70
|
"path": "./syntaxes/miki-template.tmLanguage.json",
|
|
27
|
-
"
|
|
28
|
-
"text": "
|
|
71
|
+
"embeddedLanguages": {
|
|
72
|
+
"text.html.basic": "html",
|
|
73
|
+
"meta.tag.any.html": "html",
|
|
74
|
+
"meta.tag.style.html": "css",
|
|
75
|
+
"meta.tag.script.html": "javascript",
|
|
76
|
+
"source.css": "css",
|
|
77
|
+
"source.js": "javascript"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"language": "django-html",
|
|
82
|
+
"scopeName": "text.html.django",
|
|
83
|
+
"path": "./syntaxes/miki-template.tmLanguage.json",
|
|
84
|
+
"embeddedLanguages": {
|
|
85
|
+
"text.html.basic": "html",
|
|
86
|
+
"meta.tag.any.html": "html",
|
|
87
|
+
"meta.tag.style.html": "css",
|
|
88
|
+
"meta.tag.script.html": "javascript",
|
|
89
|
+
"source.css": "css",
|
|
90
|
+
"source.js": "javascript"
|
|
29
91
|
}
|
|
30
92
|
}
|
|
31
93
|
],
|
|
@@ -33,14 +95,186 @@
|
|
|
33
95
|
{
|
|
34
96
|
"language": "miki-template",
|
|
35
97
|
"path": "./snippets/miki-template.json"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"language": "django-html",
|
|
101
|
+
"path": "./snippets/miki-template.json"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"commands": [
|
|
105
|
+
{
|
|
106
|
+
"command": "miki-template.validateAll",
|
|
107
|
+
"title": "Validate All Templates",
|
|
108
|
+
"category": "miki-template"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"command": "miki-template.insertFilter",
|
|
112
|
+
"title": "Wrap Selection with Filter",
|
|
113
|
+
"category": "miki-template"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"command": "miki-template.wrapInBlock",
|
|
117
|
+
"title": "Wrap Selection in Block",
|
|
118
|
+
"category": "miki-template"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"command": "miki-template.wrapInFor",
|
|
122
|
+
"title": "Wrap Selection in For Loop",
|
|
123
|
+
"category": "miki-template"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"command": "miki-template.wrapInIf",
|
|
127
|
+
"title": "Wrap Selection in If Condition",
|
|
128
|
+
"category": "miki-template"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"command": "miki-template.addPrettierIgnore",
|
|
132
|
+
"title": "Add prettier-ignore Comment",
|
|
133
|
+
"category": "miki-template"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"command": "miki-template.goToNextBlock",
|
|
137
|
+
"title": "Go to Next Block",
|
|
138
|
+
"category": "miki-template"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"command": "miki-template.goToPrevBlock",
|
|
142
|
+
"title": "Go to Previous Block",
|
|
143
|
+
"category": "miki-template"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"command": "miki-template.previewTemplate",
|
|
147
|
+
"title": "Preview Template",
|
|
148
|
+
"category": "miki-template"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"command": "miki-template.showOutline",
|
|
152
|
+
"title": "Show Template Outline",
|
|
153
|
+
"category": "miki-template"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"command": "miki-template.findBlockReferences",
|
|
157
|
+
"title": "Find Block References",
|
|
158
|
+
"category": "miki-template"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"keybindings": [
|
|
162
|
+
{
|
|
163
|
+
"command": "miki-template.insertFilter",
|
|
164
|
+
"key": "ctrl+shift+f",
|
|
165
|
+
"mac": "cmd+shift+f",
|
|
166
|
+
"when": "editorTextFocus && (languageId == 'miki-template' || languageId == 'django-html')"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"command": "miki-template.goToNextBlock",
|
|
170
|
+
"key": "ctrl+shift+.",
|
|
171
|
+
"mac": "cmd+shift+.",
|
|
172
|
+
"when": "editorTextFocus && (languageId == 'miki-template' || languageId == 'django-html')"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"command": "miki-template.goToPrevBlock",
|
|
176
|
+
"key": "ctrl+shift+,",
|
|
177
|
+
"mac": "cmd+shift+,",
|
|
178
|
+
"when": "editorTextFocus && (languageId == 'miki-template' || languageId == 'django-html')"
|
|
36
179
|
}
|
|
37
|
-
]
|
|
180
|
+
],
|
|
181
|
+
"configuration": {
|
|
182
|
+
"title": "miki-template",
|
|
183
|
+
"type": "object",
|
|
184
|
+
"properties": {
|
|
185
|
+
"miki-template.enableValidation": {
|
|
186
|
+
"type": "boolean",
|
|
187
|
+
"default": true,
|
|
188
|
+
"description": "Enable template validation (unclosed tags, extends placement)."
|
|
189
|
+
},
|
|
190
|
+
"miki-template.enableCompletions": {
|
|
191
|
+
"type": "boolean",
|
|
192
|
+
"default": true,
|
|
193
|
+
"description": "Enable intelligent tag and filter completions."
|
|
194
|
+
},
|
|
195
|
+
"miki-template.enableHover": {
|
|
196
|
+
"type": "boolean",
|
|
197
|
+
"default": true,
|
|
198
|
+
"description": "Enable hover documentation for tags and filters."
|
|
199
|
+
},
|
|
200
|
+
"miki-template.enableColorDecorations": {
|
|
201
|
+
"type": "boolean",
|
|
202
|
+
"default": true,
|
|
203
|
+
"description": "Highlight color values (hex, rgb, rgba, hsl) in templates."
|
|
204
|
+
},
|
|
205
|
+
"miki-template.enableCodeActions": {
|
|
206
|
+
"type": "boolean",
|
|
207
|
+
"default": true,
|
|
208
|
+
"description": "Enable quick fix actions for common issues."
|
|
209
|
+
},
|
|
210
|
+
"miki-template.enableInlayHints": {
|
|
211
|
+
"type": "boolean",
|
|
212
|
+
"default": true,
|
|
213
|
+
"description": "Show inline parameter hints for filters."
|
|
214
|
+
},
|
|
215
|
+
"miki-template.enableBracketHighlight": {
|
|
216
|
+
"type": "boolean",
|
|
217
|
+
"default": true,
|
|
218
|
+
"description": "Highlight matching tag brackets."
|
|
219
|
+
},
|
|
220
|
+
"miki-template.enableSmartPaste": {
|
|
221
|
+
"type": "boolean",
|
|
222
|
+
"default": true,
|
|
223
|
+
"description": "Smart paste handling for HTML content."
|
|
224
|
+
},
|
|
225
|
+
"miki-template.formatOnSave": {
|
|
226
|
+
"type": "boolean",
|
|
227
|
+
"default": false,
|
|
228
|
+
"description": "Format document on save (requires Prettier extension)."
|
|
229
|
+
},
|
|
230
|
+
"miki-template.formatter": {
|
|
231
|
+
"type": "string",
|
|
232
|
+
"default": "prettier",
|
|
233
|
+
"enum": ["prettier", "none"],
|
|
234
|
+
"description": "Formatter to use for miki-template files."
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
38
238
|
},
|
|
239
|
+
"emmet": {
|
|
240
|
+
"includeLanguages": {
|
|
241
|
+
"miki-template": "html",
|
|
242
|
+
"django-html": "html"
|
|
243
|
+
},
|
|
244
|
+
"syntaxProfiles": {
|
|
245
|
+
"miki-template": {
|
|
246
|
+
"tag-case": "lower",
|
|
247
|
+
"attr-case": "lower"
|
|
248
|
+
},
|
|
249
|
+
"django-html": {
|
|
250
|
+
"tag-case": "lower",
|
|
251
|
+
"attr-case": "lower"
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"extensionDependencies": ["esbenp.prettier-vscode"],
|
|
39
256
|
"publisher": "alainmiki",
|
|
40
257
|
"repository": {
|
|
41
258
|
"type": "git",
|
|
42
259
|
"url": "https://github.com/alainmiki/miki-template.git"
|
|
43
260
|
},
|
|
261
|
+
"bugs": {
|
|
262
|
+
"url": "https://github.com/alainmiki/miki-template/issues"
|
|
263
|
+
},
|
|
44
264
|
"license": "MIT",
|
|
45
|
-
"icon": "icon.png"
|
|
265
|
+
"icon": "icon.png",
|
|
266
|
+
"galleryBanner": {
|
|
267
|
+
"color": "#092c3e",
|
|
268
|
+
"theme": "dark"
|
|
269
|
+
},
|
|
270
|
+
"pricing": "Free",
|
|
271
|
+
"localInfo": [
|
|
272
|
+
{
|
|
273
|
+
"locale": "en",
|
|
274
|
+
"value": {
|
|
275
|
+
"marketplace.publisher": "alainmiki",
|
|
276
|
+
"marketplace.buyMeACoffee": "alainmiki"
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
]
|
|
46
280
|
}
|