Skip to content

Commit b8b6366

Browse files
committed
fix: bundle extension code
The extension currently times out while uploading files to the VSC marketplace, probably because it's trying to upload the entire node_modules/ directory. Let's bundle the extension instead and include only the needed files explicitly.
1 parent 5b83acc commit b8b6366

File tree

5 files changed

+680
-363
lines changed

5 files changed

+680
-363
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
tag_name: ${{ steps.release.outputs.tag_name }}
1818
steps:
1919
- id: release
20-
uses: google-github-actions/release-please-action@v4
20+
uses: googleapis/release-please-action@v4
2121
with:
2222
release-type: node
2323

.vscodeignore

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
.vscode/**
2-
.vscode-test/**
3-
src/**
4-
.gitignore
5-
.yarnrc
6-
vsc-extension-quickstart.md
7-
**/tsconfig.json
8-
**/.eslintrc.json
9-
**/*.map
10-
**/*.ts
1+
**
2+
!images/
3+
!out/main.js
4+
!hack.configuration.json
5+
!package.json
6+
!package-lock.json
7+
!LICENSE.md
8+
!NOTICE.md
9+
!README.md
10+
!SECURITY.md

NOTICE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
7171
SOFTWARE.
7272
```
7373

74-
**[brace-expansion@2.0.2](https://github.com/juliangruber/brace-expansion)**
74+
**[brace-expansion@2.0.3](https://github.com/juliangruber/brace-expansion)**
7575
```
7676
MIT License
7777

0 commit comments

Comments
 (0)