Skip to content

Commit

Permalink
Remove --web flag from vsce
Browse files Browse the repository at this point in the history
This was removed in 1.94 (microsoft/vscode-vsce@5b79e01). Not sure if we should change anything else in our build process for this...
  • Loading branch information
J-Fields committed Jul 2, 2021
1 parent 0b6a2ec commit 0e4e490
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ When submitting a PR, please fill out the template that is presented by GitHub w
npx gulp test --grep testSuite # run only tests/suites filtered by js regex inside container

# Alternatively, build .vsix extension and load it into VSCode for manual testing
yarn run vsce package --web # build vim-xxx.vsix
yarn run vsce package # build vim-xxx.vsix
```

## Code Architecture
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Build extension package
id: build_vsix
run: |
yarn run vsce package --web;
yarn run vsce package;
echo ::set-output name=vsix_path::$(ls *.vsix);
- name: Create release on GitHub
Expand All @@ -59,6 +59,6 @@ jobs:
asset_content_type: application/zip

- name: Publish to VSCode Extension Marketplace
run: yarn run vsce publish --yarn --web
run: yarn run vsce publish --yarn
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}

0 comments on commit 0e4e490

Please sign in to comment.