Skip to content

Commit a50b700

Browse files
Version 1.2.1 Release
--- * Fixes #8 unable to enter upper case characters in Version during setup.
1 parent affe6f0 commit a50b700

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

commands/setup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ module.exports = async () => {
7070
{
7171
description: chalk.cyan('Code Version:'),
7272
name: 'v',
73-
pattern: /^[a-z0-9]+$/,
73+
pattern: /^[a-zA-Z0-9]+$/,
7474
message: 'Code Version. ( e.g. develop, sitegenesis, etc )',
7575
required: true,
7676
default: 'develop'
7777
},
7878
{
7979
description: chalk.cyan('Instance Alias:'),
8080
name: 'a',
81-
pattern: /^[a-z0-9]+$/,
81+
pattern: /^[a-zA-Z0-9]+$/,
8282
message: 'Invalid Instance Alias. ( e.g. dev04, sandbox, staging, etc )',
8383
required: true,
8484
default: 'sandbox'

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sfcc-cli",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Command Line Interface for Salesforce Commerce Cloud Sandbox Development",
55
"homepage": "https://github.com/redvanworkshop/sfcc-cli#readme",
66
"license": "MIT",

0 commit comments

Comments
 (0)