cloudburn 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +3 -7
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -260,13 +260,9 @@ var registerEstimateCommand = (program) => {
|
|
|
260
260
|
var starterConfig = `version: 1
|
|
261
261
|
profile: dev
|
|
262
262
|
|
|
263
|
-
|
|
264
|
-
dev:
|
|
265
|
-
ec2-allowed-instance-types:
|
|
266
|
-
allow: [t3.micro, t3.small, t3.medium]
|
|
267
|
-
|
|
263
|
+
# Profiles are parsed but not applied yet, so configure the active rules block directly for now.
|
|
268
264
|
rules:
|
|
269
|
-
ec2-
|
|
265
|
+
ec2-instance-type-preferred:
|
|
270
266
|
severity: error
|
|
271
267
|
`;
|
|
272
268
|
var registerInitCommand = (program) => {
|
|
@@ -334,7 +330,7 @@ Examples:
|
|
|
334
330
|
// src/cli.ts
|
|
335
331
|
var createProgram = () => {
|
|
336
332
|
const program = new Command();
|
|
337
|
-
program.name("cloudburn").description("Know what you spend. Fix what you waste.").version("0.5.
|
|
333
|
+
program.name("cloudburn").description("Know what you spend. Fix what you waste.").version("0.5.1");
|
|
338
334
|
registerDiscoverCommand(program);
|
|
339
335
|
registerScanCommand(program);
|
|
340
336
|
registerInitCommand(program);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudburn",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Cloudburn CLI for cloud cost optimization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"commander": "^13.1.0",
|
|
14
|
-
"@cloudburn/sdk": "0.8.
|
|
14
|
+
"@cloudburn/sdk": "0.8.1"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@biomejs/biome": "^2.4.6",
|