Skip to content

Commit

Permalink
rename extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
akosyakov authored and jeanp413 committed Sep 17, 2021
1 parent 5efc4d0 commit 2f7510f
Show file tree
Hide file tree
Showing 52 changed files with 2,222 additions and 1,988 deletions.
8 changes: 0 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -923,14 +923,6 @@
"**/vs/workbench/workbench.sandbox.main"
]
},
{
"target": "**/extensions/gitpod-web/**",
"restrictions": "!@gitpod/supervisor-api-grpc/**"
},
{
"target": "**/extensions/gitpod-remote-ssh/**",
"restrictions": "!@gitpod/supervisor-api-grpc/**"
},
{
"target": "**/extensions/**",
"restrictions": "**/*"
Expand Down
3 changes: 2 additions & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ tasks:
export NODE_ENV=development
export VSCODE_DEV=1
gp sync-await init
yarn gitpod:watch
cd ./extensions
yarn watch
name: watch extension
- command: |
export NODE_ENV=development
Expand Down
7 changes: 3 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -495,13 +495,12 @@
"runtimeExecutable": "${execPath}",
"args": [
"/workspace/vscode",
"--extensionDevelopmentPath=${workspaceRoot}/extensions/gitpod",
"--extensionDevelopmentPath=${workspaceRoot}/extensions/gitpod-remote-ssh",
"--extensionDevelopmentPath=${workspaceRoot}/extensions/gitpod-remote",
"--log=debug"
],
"outFiles": [
"${workspaceRoot}/extensions/gitpod/out/**/*.js",
"${workspaceRoot}/extensions/gitpod-remote-ssh/out/**/*.js",
"${workspaceRoot}/extensions/gitpod-shared/out/**/*.js",
"${workspaceRoot}/extensions/gitpod-remote/out/**/*.js",
]
}
],
Expand Down
1 change: 0 additions & 1 deletion BUILD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@ packages:
config:
commands:
- ["yarn", "--cwd", "./install/build", "compile"]
- ["yarn", "--cwd", "./install", "gitpod:link"]
- ["yarn", "--cwd", "./install", "compile"]
- ["yarn", "--cwd", "./install", "download-builtin-extensions"]
4 changes: 0 additions & 4 deletions build/gulpfile.extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,6 @@ const compilations = [
'vscode-custom-editor-tests/tsconfig.json',
'vscode-notebook-tests/tsconfig.json',
'vscode-test-resolver/tsconfig.json',
'gitpod/tsconfig.json',
'gitpod-remote-ssh/tsconfig.json',
'gitpod-web/tsconfig.json',
'gitpod-desktop/tsconfig.json',
];

const getBaseUrl = out => `https://ticino.blob.core.windows.net/sourcemaps/${commit}/${out}`;
Expand Down
2 changes: 1 addition & 1 deletion build/gulpfile.gitpod.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const rename = require('gulp-rename');
const ext = require('./lib/extensions');

const extensionsPath = path.join(path.dirname(__dirname), 'extensions');
const marketplaceExtensions = ['gitpod', 'gitpod-desktop', 'gitpod-remote-ssh'];
const marketplaceExtensions = ['gitpod', 'gitpod-remote'];
const outMarketplaceExtensions = 'out-gitpod-marketplace';
const cleanMarketplaceExtensions = task.define('clean-gitpod-marketplace-extensions', util.rimraf(outMarketplaceExtensions));
const bumpMarketplaceExtensions = task.define('bump-marketplace-extensions', () => {
Expand Down
2 changes: 1 addition & 1 deletion build/hygiene.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function hygiene(some, linting = true) {
});

const copyrights = es.through(function (file) {
if (file.relative.indexOf('vs/server') === -1) {
if (file.relative.indexOf('vs/server') === -1 && file.relative.indexOf('gitpod') === -1) {
const lines = file.__lines;

for (let i = 0; i < copyrightHeaderLines.length; i++) {
Expand Down
5 changes: 3 additions & 2 deletions build/lib/extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,9 @@ const excludedExtensions = [
'vscode-notebook-tests',
'vscode-custom-editor-tests',
'github-authentication',
'gitpod-remote-ssh',
'gitpod-desktop',
'gitpod-shared',
'gitpod-remote',
'gitpod',
];
const marketplaceWebExtensionsExclude = new Set([
'ms-vscode.node-debug',
Expand Down
5 changes: 3 additions & 2 deletions build/lib/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,9 @@ const excludedExtensions = [
'vscode-notebook-tests',
'vscode-custom-editor-tests',
'github-authentication',
'gitpod-remote-ssh',
'gitpod-desktop',
'gitpod-shared',
'gitpod-remote',
'gitpod',
];

const marketplaceWebExtensionsExclude = new Set([
Expand Down
4 changes: 0 additions & 4 deletions build/npm/dirs.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ exports.dirs = [
'extensions/vscode-custom-editor-tests',
'extensions/vscode-notebook-tests',
'extensions/vscode-test-resolver',
'extensions/gitpod',
'extensions/gitpod-remote-ssh',
'extensions/gitpod-web',
'extensions/gitpod-desktop',
'remote',
'remote/web',
'test/automation',
Expand Down
1 change: 1 addition & 0 deletions extensions/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tsconfig.tsbuildinfo
5 changes: 0 additions & 5 deletions extensions/gitpod-desktop/README.md

This file was deleted.

20 changes: 0 additions & 20 deletions extensions/gitpod-desktop/extension.webpack.config.js

This file was deleted.

47 changes: 0 additions & 47 deletions extensions/gitpod-desktop/package.json

This file was deleted.

4 changes: 0 additions & 4 deletions extensions/gitpod-desktop/package.nls.json

This file was deleted.

Loading

0 comments on commit 2f7510f

Please sign in to comment.