Skip to content

Commit

Permalink
Merge pull request #1 from jaebradley/v1
Browse files Browse the repository at this point in the history
V1
  • Loading branch information
jaebradley authored Feb 16, 2018
2 parents 4016711 + 7a2afaf commit 7c39c5c
Show file tree
Hide file tree
Showing 15 changed files with 9,924 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["es2015", "stage-0"]
}
1 change: 1 addition & 0 deletions .commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = { extends: ['@commitlint/config-angular'] };
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
coverage/*
build
node_modules
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "airbnb-base",
"env": {
"jest": true
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ typings/
# dotenv environment variables file
.env

.build
9 changes: 9 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.DS_Store
.eslintcache
node_modules
npm-debug.log
.travis.yml
src/
test/
*.test.js
coverage/
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: true
node_js:
- '8'
before_install:
- npm install -g npm@5
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
script:
- npm run compile
- npm run lint
- npm run test
after_success:
- npm run travis-deploy-once "npm run semantic-release"
- npm run codecov
branches:
except:
- /^v\d+\.\d+\.\d+$/
Loading

0 comments on commit 7c39c5c

Please sign in to comment.