-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* FRON-9073 Update dependencies * FRON-9073 Update dependencies * FRON-9073 Update dependencies * Enabled strict mode again, fixed types to pull from zen-push * Updated CI scripts * Removed set-env in favour of new patterns by Gh --------- Co-authored-by: Priyank Purohit <[email protected]>
- Loading branch information
1 parent
c724dfb
commit e6b76dd
Showing
14 changed files
with
3,682 additions
and
3,290 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
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"cache", | ||
"fetch" | ||
], | ||
"version": "0.9.0", | ||
"version": "1.0.0", | ||
"main": "./dist/index.cjs.js", | ||
"module": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
|
@@ -30,7 +30,7 @@ | |
"test": "jest", | ||
"lint": "eslint 'src/**/*.tsx'", | ||
"typecheck": "tsc --noEmit", | ||
"clean": "rimraf -r dist", | ||
"clean": "rm -rf dist", | ||
"prebuild": "npm run clean", | ||
"build": "tsc", | ||
"postbuild": "npm run bundle && npm run prepdist", | ||
|
@@ -39,39 +39,43 @@ | |
}, | ||
"dependencies": { | ||
"typesafe-actions": "^5.1.0", | ||
"zen-observable": "^0.8.15", | ||
"zen-push": "^0.2.1" | ||
"zen-observable": "^0.10.0", | ||
"zen-push": "^0.3.1" | ||
}, | ||
"peerDependencies": { | ||
"react": "^16.8.0" | ||
"react": "18.3.1" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-node-resolve": "^7.1.1", | ||
"@testing-library/jest-dom": "^5.1.1", | ||
"@testing-library/react": "^9.4.0", | ||
"@testing-library/react-hooks": "^3.2.1", | ||
"@types/hoist-non-react-statics": "^3.3.1", | ||
"@types/jest": "^25.1.3", | ||
"@types/zen-observable": "^0.8.0", | ||
"@testing-library/jest-dom": "^6.4.5", | ||
"@testing-library/react": "12.1.2", | ||
"@testing-library/react-hooks": "^8.0.1", | ||
"@types/hoist-non-react-statics": "^3.3.5", | ||
"@types/jest": "^26.0.23", | ||
"@types/zen-observable": "^0.8.7", | ||
"@types/zen-push": "^0.1.1", | ||
"@typescript-eslint/eslint-plugin": "^2.20.0", | ||
"@typescript-eslint/parser": "^2.20.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-prettier": "^6.10.0", | ||
"eslint-plugin-prettier": "^3.1.2", | ||
"eslint-plugin-react": "^7.18.3", | ||
"eslint-plugin-react-hooks": "^2.4.0", | ||
"jest": "^25.1.0", | ||
"@typescript-eslint/eslint-plugin": "^5.29.0", | ||
"@typescript-eslint/parser": "^5.29.0", | ||
"eslint": "^7.32.0", | ||
"eslint-config-airbnb": "^18.2.1", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-jsx-a11y": "^6.5.1", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"eslint-plugin-react": "^7.29.4", | ||
"eslint-plugin-react-hooks": "^4.5.0", | ||
"jest": "^29.7.0", | ||
"jest-environment-jsdom": "^29.7.0", | ||
"jest-fetch-mock": "^3.0.1", | ||
"prettier": "^1.19.1", | ||
"react": "^16.12.0", | ||
"react-dom": "^16.12.0", | ||
"react-test-renderer": "^16.12.0", | ||
"rimraf": "^3.0.2", | ||
"rollup": "^1.31.1", | ||
"prettier": "2.6.2", | ||
"react": "18.3.1", | ||
"react-dom": "18.3.1", | ||
"react-test-renderer": "18.3.1", | ||
"rollup": "^1.31.0", | ||
"rollup-plugin-terser": "^5.2.0", | ||
"rollup-plugin-typescript2": "^0.26.0", | ||
"ts-jest": "^25.2.1", | ||
"typescript": "^3.7.5" | ||
} | ||
"rollup-plugin-typescript2": "^0.36.0", | ||
"ts-jest": "29.1.4", | ||
"typescript": "^5.1.3" | ||
}, | ||
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610" | ||
} |
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
Oops, something went wrong.