-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change license from ISC to MIT * include src in files * update package name to 'breinify-react' * remove Object.freeze in BreinifySetup This resulted in one of the tests failing - 'should throw when trying to change BreinifyGlobalConfigs' I remove this test since the removal of Object.freeze completely nullifies this test * Bundle ts files into build (#22) * Breinify logo Co-authored-by: Alvin <[email protected]>
- Loading branch information
1 parent
1004a10
commit a5e86b2
Showing
9 changed files
with
107 additions
and
36 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,8 +1,9 @@ | ||
{ | ||
"name": "breinify-react", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "React Library for the Breinify API", | ||
"main": "dist/cjs/index.js", | ||
"types": "dist/index.d.ts", | ||
"module": "dist/esm/index.js", | ||
"scripts": { | ||
"build": "rollup --config", | ||
|
@@ -16,13 +17,16 @@ | |
"type": "git", | ||
"url": "git+https://github.com/Breinify/brein-api-library-react.git" | ||
}, | ||
"files": ["dist/*"], | ||
"files": [ | ||
"dist/*", | ||
"src" | ||
], | ||
"keywords": [], | ||
"authors": [ | ||
"Alvin Kwong <[email protected]>", | ||
"Timothy Yue <[email protected]>" | ||
], | ||
"license": "ISC", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/Breinify/brein-api-library-react/issues" | ||
}, | ||
|
@@ -73,6 +77,7 @@ | |
"react-dom": "^18.0.0", | ||
"react-test-renderer": "^18.0.0", | ||
"rollup": "^2.75.7", | ||
"rollup-plugin-dts": "^4.2.2", | ||
"rollup-plugin-import-css": "^3.0.3", | ||
"rollup-plugin-peer-deps-external": "^2.2.4", | ||
"rollup-plugin-postcss": "^4.0.2", | ||
|
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
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
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