From d002768eee64497a838911b0e92019fa0540594a Mon Sep 17 00:00:00 2001 From: Cam Casher Date: Thu, 28 Mar 2024 12:01:55 -0600 Subject: [PATCH] fixes cli scripts for create app --- .changeset/orange-crabs-boil.md | 5 +++++ packages/create-app/templates/default-app/package.json | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changeset/orange-crabs-boil.md diff --git a/.changeset/orange-crabs-boil.md b/.changeset/orange-crabs-boil.md new file mode 100644 index 000000000..82c8f9f02 --- /dev/null +++ b/.changeset/orange-crabs-boil.md @@ -0,0 +1,5 @@ +--- +'@cloud-carbon-footprint/create-app': patch +--- + +updates the cli scripts diff --git a/packages/create-app/templates/default-app/package.json b/packages/create-app/templates/default-app/package.json index 748ff040a..aa1cc9acf 100644 --- a/packages/create-app/templates/default-app/package.json +++ b/packages/create-app/templates/default-app/package.json @@ -38,8 +38,8 @@ "start-cli": "yarn workspace @cloud-carbon-footprint/cli-template start", "test": "lerna run test -- --coverage", "guided-install": "cd packages/cli && yarn guided-install", - "create-lookup-table": "yarn workspace @cloud-carbon-footprint/cli create-lookup-table", - "create-azure-lookup": "yarn workspace @cloud-carbon-footprint/cli create-azure-lookup", - "estimate-on-premise-data": "yarn workspace @cloud-carbon-footprint/cli estimate-on-premise-data" + "create-lookup-table": "yarn workspace @cloud-carbon-footprint/cli-template create-lookup-table", + "create-azure-lookup": "yarn workspace @cloud-carbon-footprint/cli-template create-azure-lookup", + "estimate-on-premise-data": "yarn workspace @cloud-carbon-footprint/cli-template estimate-on-premise-data" } }