diff --git a/index.ts b/index.ts index 987e545a..2b2a69f3 100755 --- a/index.ts +++ b/index.ts @@ -244,7 +244,7 @@ commander await prompt([{ type : 'input', name : 'title', - message : 'give a script title: ', + message : 'give a script title:', default: LOG.UNTITLED_SCRIPT_TITLE, }]).then((answers) => { title = answers.title; diff --git a/package.json b/package.json index 508c823f..600f5dd3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@google/clasp", - "version": "1.2.1", + "version": "1.3.0", "description": "Develop Apps Script Projects locally", "main": "index.js", "scripts": { diff --git a/src/commands.ts b/src/commands.ts index 3074a308..975a1e18 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -13,8 +13,8 @@ export const LOG = { CREATE_PROJECT_START: (title: string) => `Creating new script: ${title}...`, DEPLOYMENT_CREATE: 'Creating deployment...', DEPLOYMENT_DNE: 'No deployed versions of script.', - DEPLOYMENT_LIST: (scriptId: string) => `Listing deployments for ${scriptId}...`, - DEPLOYMENT_START: (scriptId: string) => `Deploying project ${scriptId}...`, + DEPLOYMENT_LIST: (scriptId: string) => `Listing deployments...`, + DEPLOYMENT_START: (scriptId: string) => `Deploying project...`, FILES_TO_PUSH: 'Files to push were:', FINDING_SCRIPTS: 'Finding your scripts...', FINDING_SCRIPTS_DNE: 'No script files found.', @@ -36,4 +36,4 @@ export const LOG = { VERSION_DESCRIPTION: ({ versionNumber, description }: any) => `${versionNumber} - ` + (description || '(no description)'), VERSION_NUM: (numVersions: number) => `~ ${numVersions} ${pluralize('Version', numVersions)} ~`, - }; \ No newline at end of file + };