Skip to content

Commit

Permalink
Update dependencies; Drop Babel;
Browse files Browse the repository at this point in the history
  • Loading branch information
dsc8x committed Dec 28, 2018
1 parent e7a2914 commit a0def4f
Show file tree
Hide file tree
Showing 21 changed files with 18,568 additions and 1,033 deletions.
30 changes: 0 additions & 30 deletions .babelrc

This file was deleted.

21 changes: 3 additions & 18 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{
"extends": [
"es2015",
"plugin:jest/recommended",
"plugin:prettier/recommended"
"plugin:jest/recommended"
],
"plugins": [
"prettier",
"jest"
],
"parserOptions": {
"ecmaVersion": 6,
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true,
Expand All @@ -18,17 +15,5 @@
},
"env": {
"jest/globals": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 100,
"semi": false
}
]
}
}
}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.2.0
8.8.1
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"useTabs": false,
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"jsxBracketSameLine": false,
"semi": false,
"rcVerbose": true
}
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ script:
- npm run lint
- npm run test -- --runInBand
- npm run coverage
before_deploy:
- npm run build
deploy:
skip_cleanup: true
provider: npm
Expand Down
4 changes: 2 additions & 2 deletions example/config/sassVars.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
blueFromJS: 'blue'
};
blueFromJS: 'blue',
}
Loading

0 comments on commit a0def4f

Please sign in to comment.