From b20eace6709327eeff816b840b7c7dc4ec5617f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20APLAK?= Date: Thu, 5 May 2022 15:03:16 +0300 Subject: [PATCH] Add telemetry options --- .github/workflows/release.yml | 2 +- package.json | 2 +- src/saofile.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 489be0a0..6ffd9aa9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - run: | npm install npm test - SEGMENT_KEY="${{ secrets.SEGMENT_KEY }}" npm run build:cli + SEGMENT_KEY=${{ secrets.SEGMENT_KEY }} npm run build:cli npm pack npm publish --access public env: diff --git a/package.json b/package.json index 62a72e82..ded7df17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superplate-cli", - "version": "1.4.2", + "version": "1.4.3", "description": "The frontend boilerplate with superpowers", "license": "MIT", "repository": { diff --git a/src/saofile.ts b/src/saofile.ts index b5bfbc43..47db2a9a 100644 --- a/src/saofile.ts +++ b/src/saofile.ts @@ -39,7 +39,7 @@ const saoConfig: GeneratorConfig = { { type: "input", name: "name", - message: process.env.SEGMENT_KEY, + message: "What will be the name of your app", default: appName, }, ...(BinaryHelper.CanUseYarn()