Skip to content

Commit

Permalink
Published 0.0.2 to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
briansorahan committed Nov 26, 2013
1 parent e6c6679 commit b8324b7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
language: node_js
node_js:
- "0.10"
after_script:
- npm publish .
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# I publish manually using this simple Makefile.
TMPDIR=fun-js

.PHONY: node_module
node_module .DEFAULT:
mkdir $(TMPDIR) && \
cp js/fun.js package.json README.md $(TMPDIR) && \
tar -czf $(TMPDIR).tar.gz $(TMPDIR)

clean:
-rm -rf $(TMPDIR) $(TMPDIR).tar.gz
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "fun-js",
"version" : "0.0.1",
"version" : "0.0.2",
"description" : "Another functional programming library for js",
"keywords" : [
"functional"
Expand Down

0 comments on commit b8324b7

Please sign in to comment.