Skip to content

Commit

Permalink
5.0 (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
atomiks committed Sep 28, 2019
1 parent d42a72d commit edd9d4f
Show file tree
Hide file tree
Showing 173 changed files with 16,815 additions and 9,774 deletions.
9 changes: 4 additions & 5 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"presets": ["@babel/env", "@babel/typescript"],
"plugins": [
["@babel/proposal-object-rest-spread", { "loose": true }, "unique"]
],
"presets": [["@babel/env", { "loose": true }], "@babel/typescript"],
"plugins": ["dev-expression"],
"env": {
"test": {
"presets": [["@babel/env", { "targets": { "node": "current" } }]]
"presets": [["@babel/env", { "targets": { "node": "current" } }]],
"plugins": ["dev-expression"]
}
}
}
14 changes: 9 additions & 5 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
node_modules
coverage
esm
umd
website
/node_modules
/coverage
/dist
/website
/demo
/test
/build
rollup.config.js
rollup.pre-build.js
6 changes: 6 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ module.exports = {
jest: true,
es6: true,
},
globals: {
__DEV__: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
Expand All @@ -17,9 +20,12 @@ module.exports = {
project: './tsconfig.json',
},
rules: {
'no-prototype-builtins': 'off',
'@typescript-eslint/no-use-before-define': ['error', { functions: false }],
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
},
}
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/coverage
/.devserver
node_modules
/index.css
/umd
/esm
/themes
/dist
/themes
/animations
/index.d.ts
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 atomiks
Copyright (c) 2017-present atomiks

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit edd9d4f

Please sign in to comment.