Skip to content

Commit

Permalink
Bump to 1.3.0. Fix little messaging nits.
Browse files Browse the repository at this point in the history
  • Loading branch information
grant committed May 16, 2018
1 parent 3ac4cb9 commit 24c7d13
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
6 changes: 3 additions & 3 deletions src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.',
Expand All @@ -36,4 +36,4 @@ export const LOG = {
VERSION_DESCRIPTION: ({ versionNumber, description }: any) => `${versionNumber} - ` +
(description || '(no description)'),
VERSION_NUM: (numVersions: number) => `~ ${numVersions} ${pluralize('Version', numVersions)} ~`,
};
};

0 comments on commit 24c7d13

Please sign in to comment.