Skip to content

Commit

Permalink
Merge pull request #1 from jaebradley/setup
Browse files Browse the repository at this point in the history
feat(phone-number-prop-type): add phone number prop type
  • Loading branch information
jaebradley authored Dec 16, 2017
2 parents ed55042 + f99a06b commit a4271d8
Show file tree
Hide file tree
Showing 11 changed files with 7,946 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

{
"presets": ["es2015", "es2016", "stage-0"]
}
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/
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: true
node_js:
- '8'
script:
- npm run compile
- npm run lint
- npm run test
after_success:
- npm run semantic-release
- npm run codecov
branches:
except:
- /^v\d+\.\d+\.\d+$/
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'] };
Loading

0 comments on commit a4271d8

Please sign in to comment.