Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gitpod-web-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: Execute yarn
run: |
yarn --frozen-lockfile
yarn --frozen-lockfile --ignore-scripts

- name: Update Segment
working-directory: ./gitpod-web
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-gitpod-remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: Install dependencies
run: |
yarn install --frozen-lockfile
yarn install --frozen-lockfile --ignore-scripts

- name: Update Segment
working-directory: ./gitpod-remote
Expand All @@ -40,13 +40,13 @@ jobs:
- name: Publish to MS Marketplace
working-directory: ./gitpod-remote
run: |
npx vsce publish --packagePath ${{ steps.package_vsix.outputs.vsix_path }}
yarn vsce publish --packagePath ${{ steps.package_vsix.outputs.vsix_path }}
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}

- name: Publish to Open VSX Registry
working-directory: ./gitpod-remote
run: |
npx ovsx publish --packagePath ${{ steps.package_vsix.outputs.vsix_path }}
yarn ovsx publish --packagePath ${{ steps.package_vsix.outputs.vsix_path }}
env:
OVSX_PAT: ${{ secrets.OPEN_VSX_PAT }}
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image: gitpod/workspace-node
tasks:
- init: |
yarn install
yarn install --ignore-scripts
name: Compile gitpod-shared
command: |
cd gitpod-shared
Expand Down
4 changes: 3 additions & 1 deletion gitpod-remote/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,11 @@
"build:webview": "node esbuild.js",
"watch:webview": "node esbuild.js --watch",
"start:webview": "sirv public --no-clear",
"package": "npx vsce package --yarn --allow-star-activation"
"package": "yarn vsce package --yarn --allow-star-activation"
},
"devDependencies": {
"@vscode/vsce": "^2.22.0",
"ovsx": "^0.8.3",
"@tsconfig/svelte": "^2.0.0",
"@types/node": "16.x",
"@types/vscode": "1.75.0",
Expand Down
6 changes: 4 additions & 2 deletions gitpod-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -563,10 +563,12 @@
"build:webview": "node esbuild.js",
"watch:webview": "node esbuild.js --watch",
"start:webview": "sirv public --no-clear",
"update-dts": "cd \"src/@types\" && npx vscode-dts dev",
"package": "npx vsce package --yarn --allow-star-activation"
"update-dts": "cd \"src/@types\" && yarn vscode-dts dev",
"package": "yarn vsce package --yarn --allow-star-activation"
},
"devDependencies": {
"@vscode/vsce": "^2.22.0",
"vscode-dts": "^0.3.3",
"@parcel/watcher": "^2.1.0",
"@tsconfig/svelte": "^2.0.0",
"@types/js-yaml": "^4.0.5",
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
"dependencies": {
"glob": "^8.1.0"
},
"devDependencies": {
"@vscode/vsce": "^2.22.0",
"ovsx": "^0.8.3"
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"compile:gitpod-shared": "yarn --cwd gitpod-shared compile",
Expand Down