Remove --web flag from vsce

This was removed in 1.94 (5b79e01717). Not sure if we should change anything else in our build process for this...
This commit is contained in:
Jason Fields 2021-07-02 16:43:31 -04:00
parent 0b6a2ec03f
commit 0e4e49039f
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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
@ -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 }}