Skip to content

Commit

Permalink
Making the name of the packaging scripts more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
racz16 committed Nov 24, 2023
1 parent 01a52b5 commit 215e241
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-package.yml
Expand Up @@ -12,11 +12,11 @@ jobs:
matrix:
include:
- os: windows-latest
command: package-win32-x64
command: package-windows-x64
- os: ubuntu-latest
command: package-linux-x64
- os: macos-latest
command: package-darwin-x64
command: package-mac-x64
- os: ubuntu-latest
command: package-web
- os: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Expand Up @@ -25,10 +25,10 @@ jobs:
run: npm run package-universal
- name: Package to web
run: npm run package-web
- name: Package to win32-x64
run: npm run package-win32-x64
- name: Package to darwin-x64
run: npm run package-darwin-x64
- name: Package to Windows x64
run: npm run package-windows-x64
- name: Package to Mac x64
run: npm run package-mac-x64
- name: Package to linux-x64
run: npm run package-linux-x64
- name: Publish
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -317,10 +317,10 @@
"run-in-browser": "vscode-test-web --extensionDevelopmentPath=. .",
"package-universal": "vsce package --ignoreFile vscodeignore/universal.vscodeignore",
"package-web": "vsce package --target web --ignoreFile vscodeignore/web.vscodeignore",
"package-win32-x64": "vsce package --target win32-x64 --ignoreFile vscodeignore/windows.vscodeignore",
"package-darwin-x64": "vsce package --target darwin-x64 --ignoreFile vscodeignore/mac.vscodeignore",
"package-windows-x64": "vsce package --target win32-x64 --ignoreFile vscodeignore/windows.vscodeignore",
"package-mac-x64": "vsce package --target darwin-x64 --ignoreFile vscodeignore/mac.vscodeignore",
"package-linux-x64": "vsce package --target linux-x64 --ignoreFile vscodeignore/linux.vscodeignore",
"package-all": "start npm run package-universal && start npm run package-web && start npm run package-win32-x64 && start npm run package-darwin-x64 && start npm run package-linux-x64",
"package-all": "start npm run package-universal && start npm run package-web && start npm run package-windows-x64 && start npm run package-mac-x64 && start npm run package-linux-x64",
"prepare": "husky install"
},
"devDependencies": {
Expand Down

0 comments on commit 215e241

Please sign in to comment.