commit
97127c535d
3 changed files with 1022 additions and 793 deletions
|
|
@ -33,11 +33,6 @@ jobs:
|
||||||
- run: yarn run lint
|
- run: yarn run lint
|
||||||
- run: yarn run codacy
|
- run: yarn run codacy
|
||||||
|
|
||||||
build-node_0.12:
|
|
||||||
<<: *common-build
|
|
||||||
docker:
|
|
||||||
- image: node:0.12
|
|
||||||
|
|
||||||
build-node_4:
|
build-node_4:
|
||||||
<<: *common-build
|
<<: *common-build
|
||||||
docker:
|
docker:
|
||||||
|
|
@ -59,17 +54,28 @@ jobs:
|
||||||
- image: node:7
|
- image: node:7
|
||||||
|
|
||||||
build-node_8:
|
build-node_8:
|
||||||
<<: *latest-build
|
<<: *common-build
|
||||||
docker:
|
docker:
|
||||||
- image: node:8
|
- image: node:8
|
||||||
|
|
||||||
|
build-node_9:
|
||||||
|
<<: *common-build
|
||||||
|
docker:
|
||||||
|
- image: node:9
|
||||||
|
|
||||||
|
build-node_10:
|
||||||
|
<<: *latest-build
|
||||||
|
docker:
|
||||||
|
- image: node:10
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
build:
|
build:
|
||||||
jobs:
|
jobs:
|
||||||
- build-node_0.12
|
|
||||||
- build-node_4
|
- build-node_4
|
||||||
- build-node_5
|
- build-node_5
|
||||||
- build-node_6
|
- build-node_6
|
||||||
- build-node_7
|
- build-node_7
|
||||||
- build-node_8
|
- build-node_8
|
||||||
|
- build-node_9
|
||||||
|
- build-node_10
|
||||||
|
|
|
||||||
28
package.json
28
package.json
|
|
@ -32,7 +32,7 @@
|
||||||
"url": "https://www.github.com/rtfpessoa/diff2html/issues"
|
"url": "https://www.github.com/rtfpessoa/diff2html/issues"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.12"
|
"node": ">=4"
|
||||||
},
|
},
|
||||||
"preferGlobal": true,
|
"preferGlobal": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
@ -55,26 +55,26 @@
|
||||||
"fs": false
|
"fs": false
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"diff": "^3.3.1",
|
"diff": "^3.5.0",
|
||||||
"hogan.js": "^3.0.2",
|
"hogan.js": "^3.0.2",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.10",
|
||||||
"whatwg-fetch": "^2.0.3"
|
"whatwg-fetch": "^2.0.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"autoprefixer": "^7.1.4",
|
"autoprefixer": "^8.6.2",
|
||||||
"browserify": "^14.4.0",
|
"browserify": "^16.2.2",
|
||||||
"clean-css-cli": "^4.1.10",
|
"clean-css-cli": "^4.1.11",
|
||||||
"codacy-coverage": "^2.0.3",
|
"codacy-coverage": "^3.0.0",
|
||||||
"eslint": "^4.8.0",
|
"eslint": "^4.19.1",
|
||||||
"eslint-plugin-promise": "^3.5.0",
|
"eslint-plugin-promise": "^3.8.0",
|
||||||
"eslint-plugin-standard": "^3.0.1",
|
"eslint-plugin-standard": "^3.1.0",
|
||||||
"fast-html-parser": "^1.0.1",
|
"fast-html-parser": "^1.0.1",
|
||||||
"istanbul": "^0.4.5",
|
"istanbul": "^0.4.5",
|
||||||
"mkdirp": "^0.5.1",
|
"mkdirp": "^0.5.1",
|
||||||
"mocha": "^3.5.3",
|
"mocha": "^5.2.0",
|
||||||
"nopt": "^4.0.1",
|
"nopt": "^4.0.1",
|
||||||
"postcss-cli": "^4.1.1",
|
"postcss-cli": "^5.0.0",
|
||||||
"uglify-js": "^3.1.2"
|
"uglify-js": "^3.4.0"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"files": [
|
"files": [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue