Skip to content

Commit 4a942c4

Browse files
committed
Update local development tools
1 parent 2f017a7 commit 4a942c4

3 files changed

Lines changed: 524 additions & 584 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.15.1
1+
24.13.0

package.json

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,16 @@
1919
"languages": [
2020
{
2121
"id": "erb",
22-
"aliases": ["erb", "Encapsulated Ruby"],
23-
"extensions": [".erb", ".rhtml", ".rhtm", "html.erb"],
22+
"aliases": [
23+
"erb",
24+
"Encapsulated Ruby"
25+
],
26+
"extensions": [
27+
".erb",
28+
".rhtml",
29+
".rhtm",
30+
"html.erb"
31+
],
2432
"configuration": "./language-configs/erb.json"
2533
},
2634
{
@@ -37,7 +45,10 @@
3745
},
3846
{
3947
"id": "ruby",
40-
"aliases": ["ruby", "Ruby"],
48+
"aliases": [
49+
"ruby",
50+
"Ruby"
51+
],
4152
"extensions": [
4253
".arb",
4354
".builder",
@@ -152,6 +163,9 @@
152163
"scripts": {
153164
"vs-package": "./node_modules/@vscode/vsce/vsce package",
154165
"vs-publish": "./node_modules/@vscode/vsce/vsce publish",
155-
"build": "npx js-yaml syntaxes/yamls/erb.tmLanguage.yml > syntaxes/erb.tmLanguage.json && npx js-yaml syntaxes/yamls/gemfile.tmLanguage.yml > syntaxes/gemfile.tmLanguage.json && npx js-yaml syntaxes/yamls/ruby.tmLanguage.yml > syntaxes/ruby.tmLanguage.json"
166+
"build": "yarn run build:gemfile && yarn run build:erb && yarn run build:ruby",
167+
"build:gemfile": "js-yaml syntaxes/yamls/gemfile.tmLanguage.yml > syntaxes/gemfile.tmLanguage.json",
168+
"build:erb": "js-yaml syntaxes/yamls/erb.tmLanguage.yml > syntaxes/erb.tmLanguage.json",
169+
"build:ruby": "js-yaml syntaxes/yamls/ruby.tmLanguage.yml > syntaxes/ruby.tmLanguage.json"
156170
}
157171
}

0 commit comments

Comments
 (0)