File tree 4 files changed +22
-13
lines changed
4 files changed +22
-13
lines changed Original file line number Diff line number Diff line change 1
- .travis.yml
2
- .gitignore
3
- Makefile
4
- test
5
- src
1
+ ! lib
Original file line number Diff line number Diff line change @@ -6,4 +6,14 @@ node_js:
6
6
7
7
install : make clean build
8
8
script : make test
9
- after_success : make coverage
9
+ after_success : make coverage
10
+
11
+ deploy :
12
+ provider : npm
13
+
14
+ api_key :
15
+ secure : dQ72Ws2o9aVMrauYogZ3dIHVzZh78bvwbLEx1teAddfyR3pESoomZZimYu1rTXxGhbOpAG1l7QRlQVN3w8gSZ/pkzT0GJABNy3w90QKEjvPirG8EnVm6Wf9xxhqAUPPhk6L3uWIPk0X0DjotxGvIcI6klKaM3ybbfOxQz9p2GyLcrW15KbyKtHRLf+2LXpWvHGCyJmo9HzaPhy+Jh40uc+GXnuFOza29R1HnezZXCQdSlE/kGUokHwTKP6oaiqYCLXSGsy4TghUaGJcZ6J0spEm8cQF6AXYlYXLKQf2/H9glIu4a3UssxkTCIP/1ivw83xiyj1gPlNdrQpWnNrHfHJqXokqdx7iFbD5he4D5ONtpxaotpfz0DFJIw9VGP96OB6gP3raQVtt6p0YKJFMJybH1p+QlpjVpTsIBB/0Vct84IpxbASs4hkX8JZNjiVX4uQUIQnkbr19U0P32a8ofVxh50SAz1fgWQvDCxpQkzU5smswxP25M5SuaZ+HX/N16oKW1lbcw4vrSLMUndz7neLeoRk1LxBQkbeV9F+oWCRDGl4EaLQs2qc9CsEaXc0XazkJDvOIv0Zib8AS9d62CvZATdWEDfbdszi5XNndWAPv/U546CKPzxBjSc/wjoX9zg2byasazxQBoNTGhJp5Vt7FNXs/pXu8c06WTDckV+cE=
16
+ skip_cleanup : true
17
+ on :
18
+ tags : true
19
+ repo : websdk/nap
Original file line number Diff line number Diff line change 1
- PATH := node_modules/.bin:$(PATH )
2
1
SHELL := /bin/bash
2
+ PATH := $(shell echo $${PATH//\.\/node_modules\/\.bin:/}) :node_modules/.bin
3
3
4
4
SRC = $(wildcard src/* .js)
5
5
LIB = $(SRC:src/%.js=lib/%.js )
6
6
TST = $(wildcard test/* .js) $(wildcard test/** /* .js)
7
- NPM = @npm install --local > /dev/null && touch node_modules
7
+ NPM = @npm install --local && touch node_modules
8
+ OPT = --plugins transform-es2015-modules-umd --copy-files --source-maps
8
9
9
10
v ?= patch
10
11
11
12
build : node_modules $(LIB )
12
13
lib/% .js : src/% .js
13
14
@mkdir -p $(@D )
14
- @browserify $< --standalone $( @F:%.js=% ) | uglifyjs -o $@
15
+ @babel $( OPT ) -o $@ $<
15
16
16
17
node_modules : package.json
17
18
$(NPM )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @websdk/nap" ,
3
- "version" : " 0.9.8 " ,
3
+ "version" : " 0.10.7 " ,
4
4
"description" : " Organizing applications into resources" ,
5
5
"main" : " lib/nap.js" ,
6
6
"devDependencies" : {
7
7
"browserify" : " 11.1.0" ,
8
- "coveralls" : " 2.11.4 " ,
8
+ "coveralls" : " 2.11.6 " ,
9
9
"d3" : " 3.5.6" ,
10
10
"funkis" : " 0.2.0" ,
11
11
"jsdom" : " 6.5.1" ,
12
12
"nodemon" : " 1.7.0" ,
13
13
"nyc" : " 3.2.2" ,
14
14
"tap-dot" : " 1.0.0" ,
15
15
"tape" : " 4.2.1" ,
16
- "uglifyjs" : " 2.4.10"
16
+ "uglifyjs" : " 2.4.10" ,
17
+ "babel-cli" : " 6.1.4" ,
18
+ "babel-plugin-transform-es2015-modules-umd" : " 6.1.4"
17
19
},
18
20
"dependencies" : {
19
- "@websdk/rhumb" : " 0.3.4 "
21
+ "@websdk/rhumb" : " 0.3.8 "
20
22
},
21
23
"repository" : {
22
24
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments