Skip to content

Commit

Permalink
move component_json to separate task
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Feb 5, 2013
1 parent b9438cf commit fa9e43a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
build: boosh components
build: boosh component_json

boosh:
node make/build.js

components:
component_json:
@echo '{' > component.json
@egrep '(name|description|version|keywords)' package.json >> component.json
@echo ' , "main": "bean.js"' >> component.json
@echo ' , "scripts": ["bean.js"]' >> component.json
@echo ' , "repo": "https://github.com/fat/bean"' >> component.json
@echo '}' >> component.json

components: component_json
component build
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bean"
, "description": "A small, fast, framework-agnostic event manager"
, "version": "1.0.2"
, "version": "1.0.3"
, "keywords": [ "ender", "events", "event", "dom" ]
, "main": "bean.js"
, "scripts": ["bean.js"]
Expand Down

0 comments on commit fa9e43a

Please sign in to comment.