Skip to content

Commit 4f20707

Browse files
committed
Merge remote-tracking branch 'super/master'
2 parents 58524c0 + ee7b961 commit 4f20707

File tree

66 files changed

+532
-346
lines changed

Some content is hidden

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

66 files changed

+532
-346
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
node_modules
22
actual-output
33
coverage
4+
*.log
5+
yarn.lock
6+
package-lock.json

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: node_js
22
node_js:
3-
- "4.1"
3+
- "6"
44
after_script:
55
- npm run coveralls

jest.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
coveragePathIgnorePatterns: ["/node_modules/", "/test/"]
3+
}

package.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
"description": "Minimal, unopinionated static site generator powered by webpack",
55
"main": "index.js",
66
"scripts": {
7-
"test": "istanbul cover _mocha test -- --timeout 20000",
8-
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
7+
"test": "jest test",
8+
"coverage": "jest --coverage",
9+
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
910
},
1011
"repository": {
1112
"type": "git",
@@ -29,13 +30,14 @@
2930
"babel-core": "^6.2.1",
3031
"babel-loader": "^6.2.0",
3132
"babel-preset-es2015": "^6.1.18",
32-
"chai": "^3.4.1",
3333
"compression-webpack-plugin": "^0.3.1",
34-
"coveralls": "^2.11.4",
34+
"coveralls": "^3.0.2",
35+
"dir-compare": "^1.4.0",
3536
"ejs": "^2.3.4",
37+
"es6-promisify": "^6.0.0",
3638
"glob": "^7.0.3",
37-
"istanbul": "^0.4.1",
38-
"mocha": "^3.0.2",
39+
"jest": "^23.6.0",
40+
"node-dir": "^0.1.17",
3941
"rimraf": "^2.4.4",
4042
"webpack": "^1.12.10",
4143
"webpack-stats-plugin": "^0.1.1"

0 commit comments

Comments
 (0)