Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Apr 4, 2020
1 parent a46bf99 commit 1e50985
Show file tree
Hide file tree
Showing 7 changed files with 9,050 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ module.exports = {
'node/no-unsupported-features/es-syntax': ['error', {ignores: ['modules']}],
'node/no-missing-import': 'off',
'node/no-unpublished-import': 'off',
'import/no-unresolved': 'off'
'import/no-unresolved': 'off',
'import/extensions': 'off'
}
}
]
Expand Down
28 changes: 28 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,34 @@ matrix:
include:
- node_js: "12"
env: COVERAGE=true
- node_js: "12"
env: REACT_VERSION=16.13.0
- node_js: "12"
env: REACT_VERSION=16.12.0
- node_js: "12"
env: REACT_VERSION=16.11.0
- node_js: "12"
env: REACT_VERSION=16.10.2
- node_js: "12"
env: REACT_VERSION=16.10.1
- node_js: "12"
env: REACT_VERSION=16.10.0
- node_js: "12"
env: REACT_VERSION=16.9.0
- node_js: "12"
env: REACT_VERSION=16.8.6
- node_js: "12"
env: REACT_VERSION=16.8.5
- node_js: "12"
env: REACT_VERSION=16.8.4
- node_js: "12"
env: REACT_VERSION=16.8.3
- node_js: "12"
env: REACT_VERSION=16.8.2
- node_js: "12"
env: REACT_VERSION=16.8.1
- node_js: "12"
env: REACT_VERSION=16.8.0
allow_failures:
- env: COVERAGE=true

Expand Down
5 changes: 4 additions & 1 deletion es/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* ESM Entry point
* ------------------*/

// Imports
import isClassComponent from '../dist/esm/is-class-component.js';

// Exports

export * from '../dist/esm/is-class-component.js';
export default isClassComponent;

0 comments on commit 1e50985

Please sign in to comment.