Skip to content

Commit

Permalink
add basic project files
Browse files Browse the repository at this point in the history
  • Loading branch information
notslang committed Aug 13, 2014
1 parent 064f12a commit ed50cdb
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

root = true

[*]
end_of_line = lf
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
test
src
.travis.yml
Makefile
docs
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
language: node_js
node_js:
- '0.10'
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
build:
cp -R lib src
coffee -c lib
find lib -iname "*.coffee" -exec rm '{}' ';'

unbuild:
rm -rf lib
mv src lib

publish:
make build
npm publish .
make unbuild

0 comments on commit ed50cdb

Please sign in to comment.