-
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 #17 from smartive/develop
Release 2017-11-06
- Loading branch information
Showing
7 changed files
with
80 additions
and
55 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: "{build} - {branch}" | ||
skip_tags: true | ||
skip_branch_with_pr: true | ||
|
||
environment: | ||
matrix: | ||
- nodejs_version: "8" | ||
- nodejs_version: "7" | ||
- nodejs_version: "6" | ||
|
||
install: | ||
- ps: Install-Product node $env:nodejs_version | ||
- npm install | ||
|
||
test_script: | ||
- npm test | ||
|
||
build: off |
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 +1 @@ | ||
package-lock=false | ||
package-lock=false |
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,25 +1,41 @@ | ||
language: node_js | ||
|
||
cache: | ||
directories: | ||
- node_modules | ||
stages: | ||
- name: test | ||
if: tag IS blank | ||
- name: deploy | ||
if: branch = master | ||
|
||
notifications: | ||
email: false | ||
|
||
node_js: | ||
- '8' | ||
- '6' | ||
env: | ||
- BUILD_LEADER_ID=5 | ||
|
||
before_script: | ||
- npm prune | ||
|
||
after_success: | ||
- npm install coveralls@^2.11.9 && cat ./coverage/lcov.info | coveralls | ||
- npm i | ||
- npm run build | ||
- npm run semantic-release | ||
|
||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ | ||
jobs: | ||
include: | ||
- stage: test | ||
node_js: '8' | ||
after_success: | ||
- npm install coveralls@^2.11.9 && cat ./coverage/lcov.info | coveralls | ||
- stage: test | ||
node_js: '7' | ||
after_success: | ||
- npm install coveralls@^2.11.9 && cat ./coverage/lcov.info | coveralls | ||
- stage: test | ||
node_js: '6' | ||
after_success: | ||
- npm install coveralls@^2.11.9 && cat ./coverage/lcov.info | coveralls | ||
- stage: deploy | ||
node_js: '8' | ||
script: npm run typedoc | ||
deploy: | ||
provider: pages | ||
skip_cleanup: true | ||
github_token: $GH_TOKEN | ||
local_dir: ./docs | ||
- stage: deploy | ||
node_js: '8' | ||
before_script: npm run build | ||
script: echo "Deploy with semantic release" | ||
after_success: npm run semantic-release |
This file was deleted.
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
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 |
---|---|---|
|
@@ -10,7 +10,8 @@ | |
"lint": "tslint -c ./tslint.json -p ./config/tsconfig.build.json", | ||
"test": "npm run lint && npm run clean && jest -c ./jest.json", | ||
"test:watch": "npm run clean && jest -c ./jest.json --watch", | ||
"semantic-release": "semantic-release pre && npm publish && semantic-release post" | ||
"typedoc": "del-cli ./docs && typedoc --ignoreCompilerErrors --out ./docs --mode file --tsconfig ./config/tsconfig.build.json ./src/", | ||
"semantic-release": "semantic-release" | ||
}, | ||
"keywords": [ | ||
"etl", | ||
|
@@ -31,21 +32,22 @@ | |
"author": "Christoph Bühler <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/jest": "^20.0.5", | ||
"@types/jest": "^21.1.5", | ||
"del-cli": "^1.1.0", | ||
"jest": "^20.0.4", | ||
"ts-jest": "^20.0.7", | ||
"tslint": "^5.5.0", | ||
"tslint-config-airbnb": "^5.2.1", | ||
"tsutils": "^2.8.0", | ||
"typescript": "^2.4.2", | ||
"semantic-release": "^6.3.6" | ||
"jest": "^21.2.1", | ||
"semantic-release": "^9.0.0", | ||
"ts-jest": "^21.1.4", | ||
"tslint": "^5.8.0", | ||
"tslint-config-airbnb": "^5.3.0", | ||
"tsutils": "^2.12.2", | ||
"typedoc": "^0.9.0", | ||
"typescript": "^2.6.1" | ||
}, | ||
"dependencies": { | ||
"elasticsearch": "^13.2.0", | ||
"proc-that": "^0.4.0", | ||
"@types/node": "^8.0.17", | ||
"rxjs": "^5.4.2", | ||
"tslib": "^1.7.1" | ||
"elasticsearch": "^13.3.1", | ||
"proc-that": "^1.0.1", | ||
"@types/node": "^8.0.47", | ||
"rxjs": "^5.5.2", | ||
"tslib": "^1.8.0" | ||
} | ||
} |
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