Skip to content

Commit

Permalink
Revert PR #450 (#451)
Browse files Browse the repository at this point in the history
Removed change that removed additional dashes in npm test scripts in favor of adding jest-cli as a devDep.

This commit instead focusses on issue 2 from #449 where setupPrompts.js had a bug that caused start script to fail.
  • Loading branch information
Dane authored and coryhouse committed Jul 18, 2017
1 parent a5cf0e0 commit 26387b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/setup/setupPrompts.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = [
{
name: 'projectName',
description: 'Project name (default: new-project)',
pattern: /^[^._][a-z0-9\.\-_~]+$/,
pattern: /^[^._][a-z0-9-_~]+$/,
message: 'Limited to: lowercase letters, numbers, period, hyphen, ' +
'underscore, and tilde; cannot begin with period or underscore.'
},
Expand Down

0 comments on commit 26387b8

Please sign in to comment.