Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
feat(new): remove dev flag
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainLanz committed Jan 17, 2019
1 parent e5622fc commit 3f8394b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/Commands/New/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class NewApp extends BaseCommand {
{ --yarn : Use yarn over npm for modules installation }
{ --cnpm: Use cnpm over npm for installation }
{ --raw : Disable animations and colored output }
{ --dev: Install the dev release }
`
}

Expand Down Expand Up @@ -202,10 +201,6 @@ class NewApp extends BaseCommand {
const appPath = path.join(process.cwd(), name)
const stepsCounter = this.initiateSteps(options.skipInstall ? 5 : 6, options)

if (!options.branch && options.dev) {
options.branch = 'develop'
}

this.invoke(async () => {
this.dumpAsciiLogo()
await this._setupProjectDirectory(stepsCounter, appPath, options)
Expand Down

0 comments on commit 3f8394b

Please sign in to comment.