Skip to content

Commit

Permalink
Add GitHub (#18)
Browse files Browse the repository at this point in the history
* Add GitHub

* smaller build
  • Loading branch information
potatoqualitee authored Dec 17, 2024
1 parent baee9da commit a5dbc0f
Show file tree
Hide file tree
Showing 8 changed files with 2,417 additions and 83 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,4 @@ dist
.yarn/install-state.gz
.pnp.*
*.vsix
.vscode/settings.json
package-lock.json
.vscode/settings.json
18 changes: 18 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,21 @@ vsc-extension-quickstart.md
**/.eslintrc.json
**/*.map
**/*.ts
.git/**
webpack.config.js
esbuild.js
.github/**
CHANGELOG.md
.npmrc
.npmignore
.editorconfig
.prettierrc
.prettierignore
jest.config.js
coverage/**
**/*.vsix
test/**
docs/**
examples/**
*.log
resources/*.gif
3 changes: 2 additions & 1 deletion esbuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ async function main() {
outfile: 'dist/extension.js',
external: ['vscode'],
logLevel: 'silent',
treeShaking: true,
drop: production ? ['console'] : [],
plugins: [
/* add to the end of plugins array */
esbuildProblemMatcherPlugin
]
});
Expand Down
Loading

0 comments on commit a5dbc0f

Please sign in to comment.