forked from o2r-project/erc-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request o2r-project#1 from o2r-project/master
integrate changes from origin
- Loading branch information
Showing
8 changed files
with
142 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,24 @@ | ||
--- | ||
language: node_js | ||
|
||
os: | ||
- linux | ||
- osx | ||
- windows | ||
|
||
node_js: | ||
- "8" | ||
- "12" | ||
|
||
cache: | ||
directories: | ||
- "node_modules" | ||
|
||
env: | ||
- DEBUG=* | ||
|
||
install: | ||
- npm install | ||
|
||
script: | ||
- DEBUG=* npm test | ||
- npm run-script testci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
image: | ||
# - Visual Studio 2019 | ||
- Ubuntu | ||
- macOS | ||
- Visual Studio 2019 | ||
# - Ubuntu | ||
# - macOS | ||
|
||
# branches to build | ||
branches: | ||
# whitelist | ||
only: | ||
- master | ||
|
||
environment: | ||
nodejs_version: "13" | ||
environment: | ||
matrix: | ||
- nodejs_version: "12" # lts | ||
DEBUG: "*" | ||
|
||
install: | ||
- npm install -g npm@latest | ||
platform: | ||
- x64 # dependency 'sharp' is not available for x86 | ||
|
||
- npm install sharp@latest --save | ||
- npm install | ||
install: | ||
- ps: Install-Product node $env:nodejs_version $env:platform | ||
- npm install -g npm@latest | ||
- npm install sharp@latest --save | ||
- npm install | ||
|
||
test_script: | ||
- npm test | ||
- npm run-script testci | ||
|
||
build: off |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,8 @@ | |
"scripts": { | ||
"start": "DEBUG='index:*,checker:general,checker:ERROR' node index.js", | ||
"debug": "DEBUG=* node index.js", | ||
"test": "DEBUG=*,-eslint:* mocha test" | ||
"test": "DEBUG='*,-eslint:*' mocha test", | ||
"testci": "mocha test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -15,16 +16,33 @@ | |
"keywords": [ | ||
"cli", | ||
"erc", | ||
"executable research compendium", | ||
"o2r", | ||
"o2r-project", | ||
"opening reproducible research", | ||
"ifgi", | ||
"ifgi-muenster", | ||
"validating", | ||
"compare", | ||
"html" | ||
"comparison", | ||
"reproducibility", | ||
"reproducible research" | ||
], | ||
"author": { | ||
"name": "o2r project", | ||
"url": "https://o2r.info", | ||
"email": "[email protected]" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Timm Kühnel", | ||
"url": "https://github.com/Timmimim" | ||
}, | ||
{ | ||
"name": "Tom Niers", | ||
"url": "https://github.com/tnier01" | ||
}, | ||
{ | ||
"name": "Daniel Nüst", | ||
"url": "https://github.com/nuest" | ||
} | ||
], | ||
"author": "Timm Kühnel", | ||
"license": "Apache-2.0", | ||
"bin": { | ||
"erc-checker": "./index.js" | ||
|
@@ -39,7 +57,7 @@ | |
"colors": "^1.4.0", | ||
"commander": "^4.0.1", | ||
"debug": "^4.1.1", | ||
"deglob": "^4.0.1", | ||
"deglob": "o2r-project/deglob#master", | ||
"image-size": "^0.8.3", | ||
"leven": "^3.1.0", | ||
"levenshtein": "^1.0.5", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.