-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bundle): produce bundles for CDN
Summary: #6 - add bundle files for CDN usage - make type checking more strict, add error handling - optimize eslint and prettier setup Reviewed By: cabanier Differential Revision: D51244828 Privacy Context Container: L1179008 fbshipit-source-id: 7a470d0a39f2058ea29d8862d95e7e4d69f41c9d
- Loading branch information
1 parent
579f4b2
commit 18c8542
Showing
14 changed files
with
2,129 additions
and
609 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
!/.yarn/cache | ||
#/.pnp.* | ||
|
||
lib/ | ||
build/ | ||
dist/ | ||
docs/ | ||
node_modules/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
{ | ||
"filepath": "./.eslintrc.js", | ||
"semi": true, | ||
"endOfLine": "lf", | ||
"useTabs": true, | ||
"trailingComma": "all", | ||
"arrowParens": "always", | ||
"printWidth": 80, | ||
"tabWidth": 2, | ||
"singleQuote": true, | ||
"jsxSingleQuote": false | ||
} | ||
} |
Oops, something went wrong.