Skip to content

Commit 5d105a9

Browse files
authored
Merge pull request #259 from Codebrahma/development
update master
2 parents b2f125c + da077d9 commit 5d105a9

File tree

349 files changed

+43974
-19625
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

349 files changed

+43974
-19625
lines changed

.babelrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"presets": ["env", "react", "es2015", "es2017", "babel-preset-stage-3"],
3-
"plugins": ["transform-class-properties"]
2+
"presets": ["@babel/preset-env", "@babel/preset-react"],
3+
"plugins": ["@babel/plugin-proposal-class-properties"]
44
}

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ jobs:
2222
# Download and cache dependencies
2323
- restore_cache:
2424
keys:
25-
- v1-dependencies-{{ checksum "package.json" }}
25+
- v0.x-dependencies-{{ checksum "package.json" }}
2626
# fallback to using the latest cache if no exact match is found
27-
- v1-dependencies-
27+
- v0.x-dependencies-
2828

29-
- run: npm install && cd docs && npm install
29+
- run: npm install && cd doc && npm install
3030

3131
- save_cache:
3232
paths:
3333
- node_modules
34-
key: v1-dependencies-{{ checksum "package.json" }}
34+
key: v0.x-dependencies-{{ checksum "package.json" }}
3535

3636
# run tests!
37-
- run: npm run lint
37+
- run: npm run test

.eslintignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
dist/
21
node_modules/
32
webpack.config.js
4-
5-
docs/
3+
coverage/
4+
doc/src/components/common/componentData
5+
doc/public/
6+
dist/
7+
.cache/

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
name: Bug report
3+
about: Report a bug
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
12+
A clear and concise description of what the bug is.
13+
14+
**To Reproduce**
15+
16+
Steps to reproduce the behavior:
17+
1. Go to '...'
18+
2. Click on '....'
19+
3. Scroll down to '....'
20+
4. See error
21+
22+
**Expected behavior**
23+
24+
A clear and concise description of what you expected to happen.
25+
26+
**Screenshots**
27+
28+
If applicable, add screenshots to help explain your problem.
29+
30+
**Desktop (please complete the following information):**
31+
- OS: [e.g. iOS]
32+
- Browser [e.g. chrome, safari]
33+
- Version [e.g. 22]
34+
35+
**Smartphone (please complete the following information):**
36+
- Device: [e.g. iPhone6]
37+
- OS: [e.g. iOS8.1]
38+
- Browser [e.g. stock browser, safari]
39+
- Version [e.g. 22]
40+
41+
**Additional context**
42+
43+
Add any other context about the problem here.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
12+
A clear and concise description of what the problem is.
13+
14+
**Describe the solution you'd like**
15+
16+
A clear and concise description of what you want to happen.
17+
18+
**Describe alternatives you've considered**
19+
20+
A clear and concise description of any alternative solutions or features you've considered.
21+
22+
**Additional context**
23+
24+
Add any other context or screenshots about the feature request here.

.github/images/card-screenshot.png

154 KB
Loading

.github/images/higher-res.gif

13.3 MB
Loading

.github/images/logo.png

17.4 KB
Loading

.gitignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
.idea/
12
node_modules/
23
yarn-error.log
34
npm-error.log
4-
/docs/node_modules
5-
/docs/build
6-
/docs/log/*.log
5+
coverage
6+
.nyc_output
7+
/dist
8+
/stats
9+
/components

.npmignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.circleci/
2+
.github/
3+
.idea/
4+
node_modules/
5+
doc/
6+
test/
7+
coverage
8+
.nyc_output
9+
lib/
10+
stats/
11+
*.toml
12+
*.yml
13+
.gitignore
14+
.eslint*
15+
.babel*
16+
.node-version
17+
package-lock.json
18+
yarn-error.log
19+
npm-error.log
20+
webpack*

0 commit comments

Comments
 (0)