Skip to content

Commit 715406e

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 64cb924 commit 715406e

File tree

62 files changed

+601
-601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+601
-601
lines changed

build/builtin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"main": "main.js",
3-
"name": "builtin"
2+
"name": "builtin",
3+
"main": "main.js"
44
}

build/monaco/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2+
"name": "monaco-editor-core",
23
"description": "A browser based code editor",
34
"module": "./esm/vs/editor/editor.main.js",
4-
"name": "monaco-editor-core",
55
"typings": "./esm/vs/editor/editor.api.d.ts"
66
}

extensions/bat/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"name": "bat",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"scripts": {
6+
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"
7+
},
28
"contributes": {
39
"grammars": [
410
{
@@ -27,11 +33,5 @@
2733
"path": "./snippets/batchfile.code-snippets"
2834
}
2935
]
30-
},
31-
"description": "%description%",
32-
"displayName": "%displayName%",
33-
"name": "bat",
34-
"scripts": {
35-
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"
3636
}
3737
}

extensions/clojure/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"name": "clojure",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"scripts": {
6+
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json"
7+
},
28
"contributes": {
39
"configurationDefaults": {
410
"[clojure]": {
@@ -30,11 +36,5 @@
3036
"id": "clojure"
3137
}
3238
]
33-
},
34-
"description": "%description%",
35-
"displayName": "%displayName%",
36-
"name": "clojure",
37-
"scripts": {
38-
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json"
3939
}
4040
}

extensions/coffeescript/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"name": "coffeescript",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"scripts": {
6+
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json"
7+
},
28
"contributes": {
39
"breakpoints": [
410
{
@@ -40,11 +46,5 @@
4046
"path": "./snippets/coffeescript.code-snippets"
4147
}
4248
]
43-
},
44-
"description": "%description%",
45-
"displayName": "%displayName%",
46-
"name": "coffeescript",
47-
"scripts": {
48-
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json"
4949
}
5050
}

extensions/cpp/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"name": "cpp",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"scripts": {
6+
"update-grammar": "node ./build/update-grammars.js"
7+
},
28
"contributes": {
39
"grammars": [
410
{
@@ -116,11 +122,5 @@
116122
"path": "./snippets/cpp.code-snippets"
117123
}
118124
]
119-
},
120-
"description": "%description%",
121-
"displayName": "%displayName%",
122-
"name": "cpp",
123-
"scripts": {
124-
"update-grammar": "node ./build/update-grammars.js"
125125
}
126126
}

extensions/css-language-features/package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
{
2-
"activationEvents": [
3-
"onLanguage:css",
4-
"onLanguage:less",
5-
"onLanguage:scss",
6-
"onCommand:_css.applyCodeAction"
7-
],
2+
"name": "css-language-features",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"main": "./client/out/node/cssClientMain",
86
"browser": "./client/dist/browser/cssClientMain",
9-
"capabilities": {
10-
"untrustedWorkspaces": {
11-
"supported": true
12-
},
13-
"virtualWorkspaces": true
7+
"scripts": {
8+
"compile": "npx gulp compile-extension:css-language-features-client compile-extension:css-language-features-server",
9+
"install-client-next": "npm install vscode-languageclient@next"
1410
},
1511
"contributes": {
1612
"configuration": [
@@ -973,20 +969,24 @@
973969
}
974970
]
975971
},
972+
"activationEvents": [
973+
"onLanguage:css",
974+
"onLanguage:less",
975+
"onLanguage:scss",
976+
"onCommand:_css.applyCodeAction"
977+
],
976978
"dependencies": {},
977-
"description": "%description%",
978979
"devDependencies": {
979980
"@types/node": "22.9.1"
980981
},
981-
"displayName": "%displayName%",
982+
"icon": "icons/css.png",
983+
"capabilities": {
984+
"untrustedWorkspaces": {
985+
"supported": true
986+
},
987+
"virtualWorkspaces": true
988+
},
982989
"enabledApiProposals": [
983990
"documentPaste"
984-
],
985-
"icon": "icons/css.png",
986-
"main": "./client/out/node/cssClientMain",
987-
"name": "css-language-features",
988-
"scripts": {
989-
"compile": "npx gulp compile-extension:css-language-features-client compile-extension:css-language-features-server",
990-
"install-client-next": "npm install vscode-languageclient@next"
991-
}
991+
]
992992
}

extensions/css/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"name": "css",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"scripts": {
6+
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin microsoft/vscode-css grammars/css.cson ./syntaxes/css.tmLanguage.json"
7+
},
28
"contributes": {
39
"grammars": [
410
{
@@ -26,11 +32,5 @@
2632
]
2733
}
2834
]
29-
},
30-
"description": "%description%",
31-
"displayName": "%displayName%",
32-
"name": "css",
33-
"scripts": {
34-
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin microsoft/vscode-css grammars/css.cson ./syntaxes/css.tmLanguage.json"
3535
}
3636
}

extensions/dart/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
"name": "dart",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"scripts": {
6+
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin dart-lang/dart-syntax-highlight grammars/dart.json ./syntaxes/dart.tmLanguage.json"
7+
},
28
"contributes": {
39
"grammars": [
410
{
@@ -19,11 +25,5 @@
1925
"id": "dart"
2026
}
2127
]
22-
},
23-
"description": "%description%",
24-
"displayName": "%displayName%",
25-
"name": "dart",
26-
"scripts": {
27-
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin dart-lang/dart-syntax-highlight grammars/dart.json ./syntaxes/dart.tmLanguage.json"
2828
}
2929
}

extensions/debug-server-ready/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
{
2-
"activationEvents": [
3-
"onDebugResolve"
4-
],
5-
"capabilities": {
6-
"untrustedWorkspaces": {
7-
"supported": true
8-
},
9-
"virtualWorkspaces": false
2+
"name": "debug-server-ready",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"main": "./out/extension",
6+
"scripts": {
7+
"compile": "gulp compile-extension:debug-server-ready"
108
},
119
"contributes": {
1210
"debuggers": [
@@ -193,18 +191,20 @@
193191
}
194192
]
195193
},
196-
"description": "%description%",
194+
"activationEvents": [
195+
"onDebugResolve"
196+
],
197197
"devDependencies": {
198198
"@types/node": "22.9.1"
199199
},
200-
"displayName": "%displayName%",
200+
"icon": "media/icon.png",
201+
"capabilities": {
202+
"untrustedWorkspaces": {
203+
"supported": true
204+
},
205+
"virtualWorkspaces": false
206+
},
201207
"enabledApiProposals": [
202208
"terminalDataWriteEvent"
203-
],
204-
"icon": "media/icon.png",
205-
"main": "./out/extension",
206-
"name": "debug-server-ready",
207-
"scripts": {
208-
"compile": "gulp compile-extension:debug-server-ready"
209-
}
209+
]
210210
}

0 commit comments

Comments
 (0)