Skip to content

Commit

Permalink
chore: adjust template names
Browse files Browse the repository at this point in the history
  • Loading branch information
ZauberNerd authored and dmbch committed Oct 13, 2017
1 parent 8d67820 commit 7c0b076
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "cd packages/template-default; yarn start",
"start": "cd packages/template-react; yarn start",
"test": "lerna run test --stream",
"lint": "eslint \"packages/**/*.js\"",
"release": "lerna publish --exact",
Expand Down Expand Up @@ -67,7 +67,7 @@
},
"eslintIgnore": [
"**/node_modules/**",
"**/template-default/**",
"**/template-*/**",
"**/spec/mock/**"
],
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/hops.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function globalCLI (argv) {
type: 'string',
describe: 'Use this with the npm package name of a template to ' +
'initialize with a different template',
default: 'hops-template-default'
default: 'hops-template-react'
})
.option('hops-version', {
type: 'string',
Expand All @@ -51,12 +51,12 @@ function globalCLI (argv) {
.example(
'$0 init my-project',
'Creates the folder my-project inside the current directory and ' +
'initializes a sample hops project inside it.'
'initializes a sample hops react project inside it.'
)
.example(
'$0 init --template hops-template-malt my-project',
'$0 init --template hops-template-minimal my-project',
'Creates the folder my-project inside the current directory and ' +
'initializes an example project using malt inside it.'
'initializes a minimal hops example inside it.'
)
.help('h')
.alias('h', 'help')
Expand Down
2 changes: 1 addition & 1 deletion packages/template-react/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "hops-template-default",
"name": "hops-template-react",
"version": "7.0.0-2",
"main": "src/app.js",
"license": "MIT",
Expand Down

0 comments on commit 7c0b076

Please sign in to comment.