Skip to content

Commit

Permalink
add typescript, cb release test extension (#117)
Browse files Browse the repository at this point in the history
* add typescript, cb release test extension

* tmp version hardcode

* use builder with typescript

* restore values

* comment on extension status

* restore original package.json

* use released cloudbuilder, remove console logs
  • Loading branch information
mitchdraft authored Mar 6, 2019
1 parent 4b8ae65 commit 8ab14cd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions changelog/v0.4.5/cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
changelog:
- type: NON_USER_FACING
description: "fix build issue - need tsc"
2 changes: 1 addition & 1 deletion cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ steps:
waitFor: ['compile', 'npminstall']
id: 'push-github-resources'

- name: 'gcr.io/$PROJECT_ID/go-vsce:0.1.3'
- name: 'gcr.io/$PROJECT_ID/go-vsce:0.1.4'
entrypoint: make
args: ['publish-extension']
env:
Expand Down
2 changes: 1 addition & 1 deletion editor/vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## What is Squash ?
Squash, a tool for debugging distributed applications, is designed to bring the strength of modern debuggers and the convenience of their IDEs to microservices developers. Squash uses popular, powerful and mature debuggers, and integrates them seamlessly with Kubernetes. This allows devs to use the debugger of their choice, and the IDEs that support it, to debug microservices on Kubernetes.

## What is Squash extention ?
## What is the Squash extension ?
The Squash VS Code extenstion allows Squash to use Visual Studio Code as its user interface.
After installing this extension Squash commands are available in VS Code command palette.

Expand Down
3 changes: 1 addition & 2 deletions editor/vscode/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ async function getremote(extPath: string): Promise<string> {
let ks = getSquashctl();


// exit this early until release is smoothed out
return "";
if (fs.existsSync(execpath)) {
let exechash = await hash(execpath);
Expand Down Expand Up @@ -168,8 +169,6 @@ class SquashExtension {
}

async debug() {
// run the squashkube binary with -server

let squashpath: string = get_conf_or("path", null);
console.log("using squashctl from:");
console.log(squashpath);
Expand Down

0 comments on commit 8ab14cd

Please sign in to comment.