Skip to content
This repository was archived by the owner on Aug 12, 2020. It is now read-only.

Commit 9585a9f

Browse files
committedApr 19, 2016
data exporting
1 parent 19910e5 commit 9585a9f

File tree

68 files changed

+310
-350
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+310
-350
lines changed
 

Diff for: ‎.npmignore

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
2+
.DS_Store
3+
tests/repo-tests*
4+
5+
# Logs
6+
logs
7+
*.log
8+
9+
# Runtime data
10+
pids
11+
*.pid
12+
*.seed
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21+
.grunt
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (http://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directory
30+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
31+
node_modules
32+
33+
test

Diff for: ‎.travis.yml

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1+
sudo: false
12
language: node_js
23
node_js:
3-
- '4'
4-
- '5'
4+
- 4
5+
- 5
56

7+
# Make sure we have new NPM.
68
before_install:
7-
- npm i -g npm
8-
# Workaround for a permissions issue with Travis virtual machine images
9+
- npm install -g npm
10+
11+
script:
12+
- npm run lint
13+
- npm test
14+
- npm run coverage
915

1016
addons:
1117
firefox: 'latest'
@@ -14,6 +20,5 @@ before_script:
1420
- export DISPLAY=:99.0
1521
- sh -e /etc/init.d/xvfb start
1622

17-
script:
18-
- npm run lint
19-
- npm test
23+
after_success:
24+
- npm run coverage-publish

0 commit comments

Comments
 (0)
This repository has been archived.