Skip to content

Commit 4dffad7

Browse files
committed
feat: welcome loadable
BREAKING CHANGE: API has completely changed, see documentation.
1 parent 3a42604 commit 4dffad7

File tree

108 files changed

+5832
-11114
lines changed

Some content is hidden

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

108 files changed

+5832
-11114
lines changed

.babelrc

Lines changed: 0 additions & 17 deletions
This file was deleted.

.eslintignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules/
22
/coverage/
3-
/dist/
4-
__fixtures__/
3+
dist/
4+
lib/

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"react/jsx-filename-extension": ["error", { "extensions": [".js"] }],
1111
"react/jsx-wrap-multilines": "off",
1212
"react/no-unused-state": "off",
13-
"react/destructuring-assignment": "off"
13+
"react/destructuring-assignment": "off",
14+
"react/prop-types": "off"
1415
}
1516
}

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules/
2-
/dist/
2+
dist/
3+
lib/
34
/coverage/
4-
bundle-stats.html

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ node_modules/
44
__fixtures__/
55
CHANGELOG.md
66
package.json
7+
lerna.json

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ node_js:
55
- 10
66

77
before_install:
8-
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.3.2
8+
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.10.1
99
- export PATH="$HOME/.yarn/bin:$PATH"
1010

1111
script:
@@ -17,8 +17,8 @@ notifications:
1717
cache:
1818
yarn: true
1919
directories:
20-
- ".eslintcache"
21-
- "node_modules"
20+
- '.eslintcache'
21+
- 'node_modules'
2222

2323
git:
2424
depth: 5

0 commit comments

Comments
 (0)