@pagopa/dx-cli 0.10.0 → 0.10.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/README.md CHANGED
@@ -125,6 +125,7 @@ dx savemoney --days 60 --location italynorth
125
125
  - **Storage Accounts**: Low transaction counts
126
126
  - **App Service Plans**: Empty plans or oversized tiers
127
127
  - **Private Endpoints**: Unused or misconfigured endpoints
128
+ - **Container Apps**: Not running, zero replicas, low resource usage
128
129
 
129
130
  > [!NOTE]
130
131
  > Currently only Azure is supported. Support for additional cloud providers (AWS) is planned for future releases.
package/bin/index.js CHANGED
@@ -789,13 +789,11 @@ var makeSavemoneyCommand = () => new Command5("savemoney").description(
789
789
  // src/adapters/commander/index.ts
790
790
  var makeCli = (deps2, config2, cliDeps) => {
791
791
  const program2 = new Command6();
792
- program2.name("dx").description("The CLI for DX-Platform").version("0.10.0");
792
+ program2.name("dx").description("The CLI for DX-Platform").version("0.10.1");
793
793
  program2.addCommand(makeDoctorCommand(deps2, config2));
794
794
  program2.addCommand(makeCodemodCommand(cliDeps));
795
+ program2.addCommand(makeInitCommand());
795
796
  program2.addCommand(makeSavemoneyCommand());
796
- if (process.env.ENABLE_INIT_COMMAND) {
797
- program2.addCommand(makeInitCommand());
798
- }
799
797
  program2.addCommand(makeInfoCommand(deps2, config2));
800
798
  return program2;
801
799
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagopa/dx-cli",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "type": "module",
5
5
  "description": "A CLI useful to manage DX tools.",
6
6
  "repository": {
@@ -31,8 +31,8 @@
31
31
  "semver": "^7.7.2",
32
32
  "yaml": "^2.8.0",
33
33
  "zod": "^3.25.28",
34
- "@pagopa/monorepo-generator": "^0.8.3",
35
- "@pagopa/dx-savemoney": "^0.1.1"
34
+ "@pagopa/dx-savemoney": "^0.1.2",
35
+ "@pagopa/monorepo-generator": "^0.10.1"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@tsconfig/node22": "22.0.2",