Skip to content

Commit

Permalink
fix install from git
Browse files Browse the repository at this point in the history
  • Loading branch information
clkao committed Oct 13, 2014
1 parent d0354e4 commit b51929c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -19,7 +19,7 @@
"scripts": {
"test": "mocha",
"prepublish": "lsc -cj package.ls &&\nlsc -bc -o lib src",
"postinstall": "if [ ! -e ./lib ]; then npm i LiveScript; lsc -bc -o lib src; fi"
"postinstall": "if [ ! -e ./lib ]; then npm i LiveScript@1.2.x; lsc -bc -o lib src; fi"
},
"engines": {
"node": "*"
Expand Down
2 changes: 1 addition & 1 deletion package.ls
Expand Up @@ -21,7 +21,7 @@ scripts:
"""
# this is probably installing from git directly, no lib. assuming dev
postinstall: """
if [ ! -e ./lib ]; then npm i LiveScript; lsc -bc -o lib src; fi
if [ ! -e ./lib ]; then npm i LiveScript@1.2.x; lsc -bc -o lib src; fi
"""
engines: {node: '*'}
dependencies:
Expand Down

0 comments on commit b51929c

Please sign in to comment.