Skip to content

Commit 8a00886

Browse files
removed need for 3rd party deps
1 parent d38432c commit 8a00886

File tree

6 files changed

+123
-2846
lines changed

6 files changed

+123
-2846
lines changed

.vscode/launch.json

+2-29
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
1-
// Copyright 2020 Workiva Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
// See the License for the specific language governing permissions and
13-
// limitations under the License.
14-
//
151
// A launch configuration that compiles the extension and then opens it inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
164
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
175
{
186
"version": "0.2.0",
@@ -21,28 +9,13 @@
219
"name": "Run Extension",
2210
"type": "extensionHost",
2311
"request": "launch",
24-
"runtimeExecutable": "${execPath}",
2512
"args": [
2613
"--extensionDevelopmentPath=${workspaceFolder}"
2714
],
2815
"outFiles": [
2916
"${workspaceFolder}/out/**/*.js"
3017
],
3118
"preLaunchTask": "${defaultBuildTask}"
32-
},
33-
{
34-
"name": "Extension Tests",
35-
"type": "extensionHost",
36-
"request": "launch",
37-
"runtimeExecutable": "${execPath}",
38-
"args": [
39-
"--extensionDevelopmentPath=${workspaceFolder}",
40-
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
41-
],
42-
"outFiles": [
43-
"${workspaceFolder}/out/test/**/*.js"
44-
],
45-
"preLaunchTask": "${defaultBuildTask}"
4619
}
4720
]
4821
}

esbuild.js

-56
This file was deleted.

package.json

+5-19
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,17 @@
1010
},
1111
"categories": ["Other"],
1212
"activationEvents": ["onLanguage:dart"],
13-
"main": "./dist/extension.js",
13+
"main": "./out/extension.js",
1414
"scripts": {
15-
"vscode:prepublish": "pnpm run package",
16-
"compile": "pnpm run check-types && node esbuild.js",
17-
"watch": "npm-run-all -p watch:*",
18-
"watch:esbuild": "node esbuild.js --watch",
19-
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
20-
"package": "pnpm run check-types && node esbuild.js --production",
21-
"compile-tests": "tsc -p . --outDir out",
22-
"watch-tests": "tsc -p . -w --outDir out",
23-
"pretest": "pnpm run compile-tests && pnpm run compile",
24-
"check-types": "tsc --noEmit"
15+
"vscode:prepublish": "pnpm run compile",
16+
"compile": "tsc -p ./",
17+
"watch": "tsc -watch -p ./"
2518
},
2619
"icon": "images/OverReact_Logo.png",
2720
"devDependencies": {
2821
"@types/node": "20.x",
29-
"@types/semver": "^7.5.8",
3022
"@types/vscode": "^1.97.0",
31-
"@vscode/vsce": "^3.2.2",
3223
"typescript": "^5.7.3",
33-
"esbuild": "^0.24.2",
34-
"npm-run-all": "^4.1.5"
35-
},
36-
"dependencies": {
37-
"semver": "^7.7.1",
38-
"yaml": "^2.7.0"
24+
"esbuild": "^0.24.2"
3925
}
4026
}

0 commit comments

Comments
 (0)