From 4fb448ed7b9fca1bc3d9dd91b28fdcc9b2cfc7ee Mon Sep 17 00:00:00 2001 From: km1chno Date: Wed, 18 Sep 2024 11:43:12 +0200 Subject: [PATCH] fix: build dev script after name migration --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fc9baf3..3f9d095 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "compile": "tsc -p .", "copy-templates": "cp -r ./src/templates/ ./build/templates", "build": "yarn clean-build && yarn compile && yarn copy-templates", - "build:dev": "sed -i 's/\"name\": \"react-native-ci-cli\"/\"name\": \"setup-ci\"/g' package.json && yarn build", + "build:dev": "sed -i 's/\"name\": \"setup-ci\"/\"name\": \"react-native-ci-cli\"/g' package.json && yarn build", "bump:dev": "node scripts/bump-version-dev.ts", "prepublishOnly": "yarn build", "test": "jest --runInBand --bail --verbose",