Skip to content

Commit

Permalink
Added the INSTALL file and added the bake program as a binary to the npm
Browse files Browse the repository at this point in the history
package descriptor.
  • Loading branch information
cyberfunk committed Dec 26, 2012
1 parent 785325b commit cede8a0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGES
@@ -1,3 +1,5 @@
# 0.0.1
# Changelog

## 0.0.1

Initial implementation.
9 changes: 9 additions & 0 deletions INSTALL
@@ -0,0 +1,9 @@
# Installation

To install the library code as a dependency for a project into the `node_modules` sub-folder use:

npm install strike

If you want the supplied executables to be available in `$PATH` use the global flag:

npm install -g strike
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ Brings structure and modularity to `bash` programs and provides a set of modules

Documentation for the repository is generated using [ronn](https://github.com/rtomayko/ronn) which must be installed, to generate documentation run:

npm run-script doc
./bin/bake doc

## Boilerplate

Expand Down
5 changes: 4 additions & 1 deletion package.json
Expand Up @@ -17,5 +17,8 @@
"scripts": {
"test": "./bin/runner"
},
"config" : {}
"config" : {},
"bin" : {
"bake" : "./bin/bake"
}
}

0 comments on commit cede8a0

Please sign in to comment.