typespec-vscode 0.60.0 → 0.61.0-dev.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/package.json +25 -4
- package/typespec-vscode-0.60.0.vsix +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.61.0-dev.1",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -121,6 +121,25 @@
|
|
|
121
121
|
]
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
|
+
],
|
|
125
|
+
"taskDefinitions": [
|
|
126
|
+
{
|
|
127
|
+
"type": "typespec",
|
|
128
|
+
"when": "shellExecutionSupported",
|
|
129
|
+
"required": [
|
|
130
|
+
"path"
|
|
131
|
+
],
|
|
132
|
+
"properties": {
|
|
133
|
+
"path": {
|
|
134
|
+
"type": "string",
|
|
135
|
+
"description": "The path to trigger tsp compile"
|
|
136
|
+
},
|
|
137
|
+
"args": {
|
|
138
|
+
"type": "string",
|
|
139
|
+
"description": "The arguments to tsp compile"
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
124
143
|
]
|
|
125
144
|
},
|
|
126
145
|
"devDependencies": {
|
|
@@ -129,6 +148,8 @@
|
|
|
129
148
|
"@rollup/plugin-typescript": "~11.1.6",
|
|
130
149
|
"@types/node": "~18.11.19",
|
|
131
150
|
"@types/vscode": "~1.91.0",
|
|
151
|
+
"@typespec/compiler": "~0.60.1 || >=0.61.0-dev <0.61.0",
|
|
152
|
+
"@typespec/internal-build-utils": "~0.60.0 || >=0.61.0-dev <0.61.0",
|
|
132
153
|
"@vitest/coverage-v8": "^2.0.4",
|
|
133
154
|
"@vitest/ui": "^2.0.4",
|
|
134
155
|
"@vscode/vsce": "~2.31.1",
|
|
@@ -137,10 +158,10 @@
|
|
|
137
158
|
"rollup": "~4.19.0",
|
|
138
159
|
"typescript": "~5.5.4",
|
|
139
160
|
"vitest": "^2.0.4",
|
|
140
|
-
"vscode-languageclient": "~9.0.1"
|
|
141
|
-
"@typespec/compiler": "~0.60.0",
|
|
142
|
-
"@typespec/internal-build-utils": "~0.60.0"
|
|
161
|
+
"vscode-languageclient": "~9.0.1"
|
|
143
162
|
},
|
|
163
|
+
"dependencies": {},
|
|
164
|
+
"peerDependencies": {},
|
|
144
165
|
"scripts": {
|
|
145
166
|
"clean": "rimraf ./dist ./temp",
|
|
146
167
|
"build": "npm run compile && npm run copy-tmlanguage && npm run generate-language-configuration && npm run generate-third-party-notices && npm run package-vsix",
|
|
Binary file
|