Skip to content

Commit ff342f5

Browse files
committed
add code fence support, update dependencies
1 parent 1af5d39 commit ff342f5

File tree

3 files changed

+592
-532
lines changed

3 files changed

+592
-532
lines changed

package.json

+24-10
Original file line numberDiff line numberDiff line change
@@ -42,31 +42,31 @@
4242
"main": "./lib/extension",
4343
"dependencies": {
4444
"@nsis/nlf": "^0.10.2",
45-
"makensis": "^2.0.4",
45+
"makensis": "^2.0.5",
4646
"micromatch": "^4.0.5",
47-
"open": "^8.4.0",
47+
"open": "^8.4.2",
4848
"vscode-get-config": "^0.4.0",
4949
"which": "^3.0.0"
5050
},
5151
"devDependencies": {
52-
"@babel/core": "^7.20.12",
52+
"@babel/core": "^7.21.0",
5353
"@babel/preset-env": "^7.20.2",
54-
"@babel/register": "^7.18.9",
54+
"@babel/register": "^7.21.0",
5555
"@nsis/logo": "0.0.0",
56-
"@types/node": "^18.11.18",
57-
"@typescript-eslint/eslint-plugin": "^5.50.0",
58-
"@typescript-eslint/parser": "^5.50.0",
56+
"@types/node": "^18.14.0",
57+
"@typescript-eslint/eslint-plugin": "^5.53.0",
58+
"@typescript-eslint/parser": "^5.53.0",
5959
"@vscode/vsce": "^2.17.0",
6060
"cross-env": "^7.0.3",
61-
"esbuild": "^0.17.5",
62-
"eslint": "^8.33.0",
61+
"esbuild": "^0.17.10",
62+
"eslint": "^8.34.0",
6363
"eslint-plugin-json": "^3.1.0",
6464
"eslint-plugin-yaml": "^0.5.0",
6565
"gulp": "^4.0.2",
6666
"gulp-raster-update": "^0.2.0",
6767
"gulp-rename": "^2.0.0",
6868
"husky": "^8.0.3",
69-
"lint-staged": "^13.1.0",
69+
"lint-staged": "^13.1.2",
7070
"npm-run-all": "^4.1.5",
7171
"ovsx": "^0.8.0",
7272
"typescript": "^4.9.5"
@@ -292,6 +292,9 @@
292292
".nlf"
293293
],
294294
"configuration": "./config/nlf.json"
295+
},
296+
{
297+
"id": "nsis-injection"
295298
}
296299
],
297300
"grammars": [
@@ -304,6 +307,17 @@
304307
"language": "nlf",
305308
"scopeName": "source.nlf",
306309
"path": "./syntaxes/nlf.tmLanguage"
310+
},
311+
{
312+
"language": "nsis-injection",
313+
"scopeName": "markdown.nsis.codeblock",
314+
"path": "./syntaxes/codeblock.json",
315+
"injectTo": [
316+
"text.html.markdown"
317+
],
318+
"embeddedLanguages": {
319+
"meta.embedded.block.nsis": "nsis"
320+
}
307321
}
308322
],
309323
"commands": [

0 commit comments

Comments
 (0)