Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bundling via esbuild. #30

Merged
merged 8 commits into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
.vscode/**
.vscode-test/**
src/**/*.ts
src/**
.gitignore
.yarnrc
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
CODEOWNERS
RELEASE.md
coverage/
.nyc_output/
.github
out/
!out/extension.js
25 changes: 25 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Instructions to package this as an extension (*.vsix) file:

1. Install vsce

```
npm install -g @vscode/vsce
```

2. Install dependencies

NOTE: The packaging steps prunes the node_modules tree, so running `npm install` will reinstall dev dependencies.

```
npm install
```

3. Create package

```
vsce package
```

4. Manually install the generated .vsix file and smoke test.

TODO: Eventually we can sign and publish it directly to marketplace.
Loading