Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename redux to blueprint #109

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ npm-debug.log
coverage/
tmp/
.reduxrc
.blueprintrc
3 changes: 3 additions & 0 deletions bin/blueprint-g.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env node

require('../lib/cli/blueprint-generate');
3 changes: 3 additions & 0 deletions bin/blueprint-generate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env node

require('../lib/cli/blueprint-generate');
3 changes: 3 additions & 0 deletions bin/blueprint-init.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env node

require('../lib/cli/blueprint-init');
3 changes: 3 additions & 0 deletions bin/blueprint-new.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env node

require('../lib/cli/blueprint-new');
1 change: 0 additions & 1 deletion bin/redux.js → bin/blueprint.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#!/usr/bin/env node

require('../lib/cli');
3 changes: 0 additions & 3 deletions bin/redux-g.js

This file was deleted.

3 changes: 0 additions & 3 deletions bin/redux-generate.js

This file was deleted.

3 changes: 0 additions & 3 deletions bin/redux-init.js

This file was deleted.

3 changes: 0 additions & 3 deletions bin/redux-new.js

This file was deleted.

6 changes: 4 additions & 2 deletions design.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ SubCommands.

## Design Decisions 2.0

Rename to blueprint-cli

Take the foundation laid by 1.0 and extend the capabilities.

Blueprints are most useful when able to be shared, copied and customized.
Expand All @@ -25,8 +27,8 @@ Provide a way to copy blueprints into the default directory in order to
increase the ease of customizing your own version of a default or shared
blueprint.

Enhance the .reduxrc experience. Add the ability to have home directory
and ENV var defined locations. Allow merging of multiple .reduxrc files.
Enhance the .blueprintrc experience. Add the ability to have home directory
and ENV var defined locations. Allow merging of multiple .blueprintrc files.
Allow defining blueprint directories in the file.

Enhance the Generator experience. Look to Ruby on Rails for inspiration.
Expand Down
20 changes: 13 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "redux-cli",
"version": "2.0.0-0.1.0",
"version": "2.0.0-0.2.0",
"description": "An opinionated CLI to make working on redux apps much faster.",
"main": "bin/redux.js",
"main": "bin/blu.js",
"engine": {
"node": ">=5.1"
},
Expand All @@ -23,6 +23,7 @@
"redux",
"react",
"cli",
"blueprint",
"generator",
"react.js",
"kit",
Expand All @@ -33,11 +34,16 @@
"author": "Spencer Dixon <[email protected]>",
"license": "MIT",
"bin": {
"redux": "bin/redux.js",
"redux-init": "bin/redux-init.js",
"redux-generate": "bin/redux-generate.js",
"redux-g": "bin/redux-g.js",
"redux-new": "bin/redux-new.js"
"blueprint": "bin/blueprint.js",
"blueprint-init": "bin/blueprint-init.js",
"blueprint-generate": "bin/blueprint-generate.js",
"blueprint-g": "bin/blueprint-g.js",
"blueprint-new": "bin/blueprint-new.js",
"bp": "bin/blueprint.js",
"bp-init": "bin/blueprint-init.js",
"bp-generate": "bin/blueprint-generate.js",
"bp-g": "bin/blueprint-g.js",
"bp-new": "bin/blueprint-new.js"
},
"dependencies": {
"chalk": "^1.1.1",
Expand Down
Loading