Skip to content

Commit ae5d171

Browse files
authored
update bundle to include prettier (#3847)
1 parent b783b0c commit ae5d171

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
node-version-file: ".nvmrc"
6666
- run: npm ci
6767
- run: npm run compile
68-
- run: npx @vscode/vsce package --no-dependencies
68+
- run: npx @vscode/vsce package
6969
- run: echo "VSIX_PATH=$(find . -maxdepth 1 -type f -iname "*.vsix" | head -1)" >> $GITHUB_ENV
7070
- run: echo "VSIX_NAME=$(basename $(find . -maxdepth 1 -type f -iname "*.vsix" | head -1))" >> $GITHUB_ENV
7171
- uses: actions/upload-artifact@v5
@@ -93,7 +93,7 @@ jobs:
9393
fi
9494
- run: npm ci
9595
- run: npm run compile
96-
- run: npx @vscode/vsce package --no-dependencies ${{ steps.check_prerelease.outputs.is_prerelease == 'true' && '--pre-release' || '' }}
96+
- run: npx @vscode/vsce package ${{ steps.check_prerelease.outputs.is_prerelease == 'true' && '--pre-release' || '' }}
9797
- run: echo "VSIX_PATH=$(find . -maxdepth 1 -type f -iname "*.vsix" | head -1)" >> $GITHUB_ENV
9898
- run: echo "VSIX_NAME=$(basename $(find . -maxdepth 1 -type f -iname "*.vsix" | head -1))" >> $GITHUB_ENV
9999
- name: Create GitHub Release
@@ -112,4 +112,4 @@ jobs:
112112
113113
---
114114
See the full [CHANGELOG](https://github.com/prettier/prettier-vscode/blob/main/CHANGELOG.md) for details."
115-
- run: npx @vscode/vsce publish --no-dependencies -p ${{ secrets.MARKETPLACE_TOKEN }} ${{ steps.check_prerelease.outputs.is_prerelease == 'true' && '--pre-release' || '' }}
115+
- run: npx @vscode/vsce publish -p ${{ secrets.MARKETPLACE_TOKEN }} ${{ steps.check_prerelease.outputs.is_prerelease == 'true' && '--pre-release' || '' }}

.vscodeignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ package-lock.json
2222
dist/*.map
2323

2424
node_modules/
25-
!node_modules/prettier/*
26-
node_modules/prettier/esm
25+
!node_modules/prettier/
26+
!node_modules/prettier/**

0 commit comments

Comments
 (0)