Skip to content

Commit

Permalink
fix bin script name
Browse files Browse the repository at this point in the history
  • Loading branch information
jasancheg committed Nov 9, 2017
1 parent 2bdcbab commit 32b0cfe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ lib: src
$(BABEL) src -d lib >&2; \
rm -rf bin >&2; \
test ! -d $(BIN_DIR) && mkdir $(BIN_DIR) >&2; \
mv lib/rn-prepare-svg-bin.js bin/rn-prepare-svg-bin.js >&2; \
mv lib/rn-prepare-svg-bin.js bin/rn-prepare-svg.js >&2; \

clean:
rm -rf lib/ bin/
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-prepare-svg",
"version": "0.0.4",
"version": "0.0.5",
"description": "Convert svg files to json, remove all unnecessary values.",
"main": "./lib/index",
"scripts": {
Expand Down Expand Up @@ -48,7 +48,7 @@
"should": "^13.1.3"
},
"bin": {
"rn-prepare-svg": "bin/rn-prepare-svg-bin.js"
"rn-prepare-svg": "bin/rn-prepare-svg.js"
},
"pre-commit": [
"test",
Expand Down

0 comments on commit 32b0cfe

Please sign in to comment.