Skip to content

Commit

Permalink
nice setup so far
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbogers committed Oct 20, 2018
1 parent 74dbfc8 commit 7b83005
Show file tree
Hide file tree
Showing 12 changed files with 7,216 additions and 804 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# IDE
.vscode
.idea
# project
dist/
# Logs
logs
*.log
Expand Down
18 changes: 18 additions & 0 deletions .npmignore.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
src
!dist/src
docs
config
coverage
nyc.md
.*
*.f
spell.json
tsconfig.json
tslint.json
yarn.lock
package-lock.json
test
node_modules
scratch-pad
*.exe
notes.md
23 changes: 23 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"check-coverage": false,
"clean": true,
"compact": true,
"extension": [
".ts",
".js"
],
"include": [
"src/**/*.ts"
],
"instrument": true,
"preserve-comments": false,
"reporter": [
"lcov",
"text"
],
"require": [
"ts-node/register"
],
"show-process-tree": true,
"sourceMap": true
}
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"language": "node_js",
"node_js": "node",
"cache": {
"directories": [
"node_modules"
]
},
"before_install": [
"npm i -g npm@latest"
],
"install": [
"npm install"
],
"script": [
"npm run test"
],
"after_success": [
"npm run codecov"
],
"group": "stable",
"dist": "trusty",
"os": "linux"
}
Loading

0 comments on commit 7b83005

Please sign in to comment.