Skip to content

Commit 5a2eb32

Browse files
Merge branch 'master' into yarn-support
2 parents 2b2df20 + 784fa19 commit 5a2eb32

File tree

12 files changed

+8677
-3556
lines changed

12 files changed

+8677
-3556
lines changed

.eslintrc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
2-
"extends": "eslint:recommended",
2+
"extends": [
3+
"eslint:recommended",
4+
"plugin:jest/recommended"
5+
],
36
"root": true,
47
"parser": "babel-eslint",
58
"plugins": [
6-
/*"import", */
79
"jsx-a11y",
8-
"react"
10+
"react",
11+
"jest"
912
],
1013
"env": {
1114
"browser": true,

.github/issue_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!--
2+
First of all, please read this section
3+
4+
https://github.com/securedeveloper/react-data-export/blob/master/CONTRIBUTING.md
5+
6+
Some advices before file an issue
7+
* Give a brief explanation of the issue, suggestion or feature to request.
8+
* If the issue is a question, provide as much information you have available.
9+
* How can I do in order to reproduce it? What environment?
10+
* Define which version the issue happens and whether previous version the behaviour is correct.
11+
-->
12+
13+
#### My reason:
14+
#### Steps to reproduce:
15+
#### Lib Version:

.github/pull_request_template.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!--
2+
3+
Before Pull Request check whether your commits follow this convention
4+
5+
https://github.com/securedeveloper/react-data-export/blob/master/CONTRIBUTING.md
6+
7+
* If your PR fix an issue don't forget to update the unit test or add a new one
8+
* If your PR delivers a new feature, please, provide examples and why such feature should be considered.
9+
* Update examples whether is required
10+
* Follow the commit guidelines in order to get a quick approval
11+
12+
Pick one/multiple type, if none apply please suggest one, we might be included it by default
13+
14+
eg: bug / feature
15+
16+
-->
17+
**Type:**
18+
19+
The following has been addressed in the PR:
20+
21+
* There is a related issue?
22+
* Unit or Functional tests are included in the PR
23+
24+
**Description:**
25+
26+
<!-- Resolves #??? -->

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- 'node'
4+
- '9'
5+
- '8'
56
- '6'
6-
- '5'
7-
- '4'

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
<a name="0.3.7"></a>
6+
## [0.3.7](https://github.com/securedeveloper/react-data-export/compare/v0.3.6...v0.3.7) (2018-04-04)
7+
8+
9+
10+
<a name="0.3.6"></a>
11+
## [0.3.6](https://github.com/securedeveloper/react-data-export/compare/v0.3.4...v0.3.6) (2018-04-04)
12+
13+
14+
15+
<a name="0.3.5"></a>
16+
## [0.3.5](https://github.com/securedeveloper/react-data-export/compare/v0.3.4...v0.3.5) (2018-04-04)
17+
18+
19+
520
<a name="0.3.4"></a>
621
## [0.3.4](https://github.com/securedeveloper/react-data-export/compare/v0.3.3...v0.3.4) (2018-04-04)
722

jest.config.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module.exports = {
2+
name: 'react-data-export-jest',
3+
verbose: true,
4+
collectCoverage: true,
5+
coveragePathIgnorePatterns: [
6+
'node_modules',
7+
],
8+
testEnvironment: 'jest-environment-jsdom-global',
9+
testRegex: '(/test/unit.*\\.test)\\.js',
10+
setupFiles: [
11+
'./test/global.js'
12+
],
13+
modulePathIgnorePatterns: [
14+
'global.js'
15+
],
16+
testPathIgnorePatterns: [
17+
'__snapshots__'
18+
]
19+
};

0 commit comments

Comments
 (0)