Skip to content

Commit abc7ec4

Browse files
committed
revert package* and ext for test
1 parent dc9b8fd commit abc7ec4

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
"onView:extension.vsKubernetesExplorer",
4040
"onCommand:openshift.about",
4141
"onCommand:openshift.output",
42-
"onCommand:openshift.create",
4342
"onCommand:openshift.openshiftConsole.palette",
4443
"onCommand:openshift.explorer.login",
4544
"onCommand:openshift.explorer.login.credentialsLogin",
@@ -118,11 +117,6 @@
118117
"title": "About",
119118
"category": "OpenShift"
120119
},
121-
{
122-
"command": "openshift.create",
123-
"title": "Create",
124-
"category": "OpenShift"
125-
},
126120
{
127121
"command": "clusters.openshift.build.start",
128122
"title": "Start Build",
@@ -1015,7 +1009,7 @@
10151009
"tmp": "0.1.0",
10161010
"tslint": "^5.20.0",
10171011
"typescript": "^3.6.4",
1018-
"vscode-test": "^1.2.3",
1012+
"vscode-test": "^1.2.2",
10191013
"walker": "^1.0.7"
10201014
},
10211015
"dependencies": {

src/extension.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import { OdoImpl } from './odo';
2727
import { Build } from './k8s/build';
2828
import { DeploymentConfig } from './k8s/deployment';
2929
import { TokenStore } from './util/credentialManager';
30-
import * as Oc from './oc';
3130

3231
let clusterExplorer: k8s.ClusterExplorerV1 | undefined = undefined;
3332

@@ -36,7 +35,6 @@ export async function activate(context: vscode.ExtensionContext) {
3635
Cluster.extensionContext = Component.extensionContext = TokenStore.extensionContext = context;
3736
const disposable = [
3837
vscode.commands.registerCommand('openshift.about', (context) => execute(Cluster.about, context)),
39-
vscode.commands.registerCommand('openshift.create', (context) => execute(Oc.create, context)),
4038
vscode.commands.registerCommand('openshift.output', (context) => execute(Cluster.showOpenShiftOutput, context)),
4139
vscode.commands.registerCommand('openshift.openshiftConsole', (context) => execute(Cluster.openshiftConsole, context)),
4240
vscode.commands.registerCommand('openshift.openshiftConsole.palette', (context) => execute(Cluster.openshiftConsole, context)),

0 commit comments

Comments
 (0)