Skip to content

Commit

Permalink
Add support for Component.js.
Browse files Browse the repository at this point in the history
  • Loading branch information
djanowski committed Jan 25, 2013
1 parent 7c781b0 commit f63f8b2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules
*.swp
node_modules
/build
/component.json
13 changes: 12 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
build: boosh components

boosh:
node make/build.js
node make/build.js

components:
@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
component build

0 comments on commit f63f8b2

Please sign in to comment.