Skip to content

Commit 04aa6ef

Browse files
author
Andrew E. Rhyne
committed
Release 1.0.2
1 parent a1c3279 commit 04aa6ef

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ YARN ?= $(shell which yarn)
55
PKG ?= $(if $(YARN),$(YARN),$(NODE) $(shell which npm))
66
.FORCE:
77

8-
install: .FORCE
9-
$(PKG) install
10-
118
all: .FORCE
129
babel src -d lib
1310

11+
install: .FORCE
12+
$(PKG) install
13+
1414
unit: .FORCE
1515
mocha test/unit
1616

@@ -28,3 +28,6 @@ publish:
2828
echo -e "${NPM_USERNAME}\n${NPM_PASSWORD}\n${NPM_EMAIL}" | npm login
2929
npm publish
3030
npm logout
31+
32+
clean: lib
33+
rimraf lib

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,23 @@
55
"main": "lib/microlock.js",
66
"repository": {
77
"type": "git",
8-
"url": "git+https://github.com/jobstart/microlock.git"
8+
"url": "git+https://github.com/thebigredgeek/microlock.git"
99
},
1010
"keywords": [
1111
"distributed",
1212
"lock",
1313
"etcd",
1414
"lock"
1515
],
16-
"author": "Andrew E. Rhyne",
16+
"author": "Andrew E. Rhyne <[email protected]>",
17+
"contributors": [
18+
"Zach Tratar <[email protected]>"
19+
],
1720
"license": "MIT",
1821
"bugs": {
19-
"url": "https://github.com/jobstart/microlock/issues"
22+
"url": "https://github.com/thebigredgeek/microlock/issues"
2023
},
21-
"homepage": "https://github.com/jobstart/microlock#readme",
24+
"homepage": "https://github.com/thebigredgeek/microlock#readme",
2225
"dependencies": {
2326
"bluebird": "^3.4.1"
2427
},

0 commit comments

Comments
 (0)