Skip to content

Commit be68edc

Browse files
authored
V1.1.0
1 parent b2fb41d commit be68edc

11 files changed

+2803
-464
lines changed

package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@
6060
"type": "string",
6161
"default": "",
6262
"description": "Zerops Personal Access Token"
63+
},
64+
"zvsc.minimalStatusBar": {
65+
"type": "boolean",
66+
"default": false,
67+
"description": "Keep Zerops status bar items visible while hiding editor-related items"
6368
}
6469
}
6570
},
@@ -91,12 +96,35 @@
9196
{
9297
"command": "zerops.openServiceDashboard",
9398
"title": "Zerops: Open Service Dashboard"
99+
},
100+
{
101+
"command": "zerops.exploreCostCalculator",
102+
"title": "Zerops: Cost Calculator"
103+
},
104+
{
105+
"command": "zerops.openCostCalculator",
106+
"title": "Zerops: Open Cost Calculator"
107+
},
108+
{
109+
"command": "zerops.openTerminal",
110+
"title": "Zerops: Open Terminal"
111+
},
112+
{
113+
"command": "zerops.toggleMinimalStatusBar",
114+
"title": "Zerops: Toggle Minimal Status Bar"
115+
}
116+
],
117+
"yamlValidation": [
118+
{
119+
"fileMatch": ["zerops.yml", "zerops.yaml"],
120+
"url": "./zerops-yml-schema.json"
94121
}
95122
]
96123
},
97124
"dependencies": {
98125
"@types/node-fetch": "^2.6.9",
99126
"axios": "^1.7.9",
127+
"node-abort-controller": "^3.1.1",
100128
"node-fetch": "^2.7.0"
101129
},
102130
"devDependencies": {

pnpm-lock.yaml

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

src/extension.ts

Lines changed: 958 additions & 379 deletions
Large diffs are not rendered by default.

src/init.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* Contains template configurations for Zerops projects
33
*/
44

5+
import * as vscode from 'vscode';
6+
import * as path from 'path';
7+
58
/**
69
* Default zerops.yml configuration for deploying applications
710
*/

0 commit comments

Comments
 (0)