-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed vscodeignore to ignore everything, and using whitelist
- Removed 70% worth of cruft
- Loading branch information
1 parent
b4d7631
commit 93abb09
Showing
2 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
.vscode/** | ||
.vscode-test/** | ||
node_modules/** | ||
src/** | ||
.gitignore | ||
.yarnrc | ||
vsc-extension-quickstart.md | ||
**/tsconfig.json | ||
**/.eslintrc.json | ||
**/*.map | ||
**/*.ts | ||
# Ignore everything | ||
** | ||
|
||
# Whitelist only what we want in the final package | ||
!assets/pants-logo.svg | ||
!assets/pants-logo-square.png | ||
!dist/main.js | ||
!schemas/lift.schema.json | ||
!schemas/science.schema.json | ||
!syntaxes/language-configuration.json | ||
!syntaxes/pantsbuild.tmLanguage.json | ||
!CHANGELOG.md | ||
!LICENSE | ||
!package.json | ||
!README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changelog | ||
|
||
## [0.0.2] - 2024-04-19 | ||
|
||
- Lots of preview/experimental churn | ||
|
||
## [0.0.1] - 2022-08-09 | ||
|
||
- First release to the VS Code Marketplace |