-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: thread poisoning caused by yrs crash (#240)
- Loading branch information
1 parent
c25b698
commit edb3f2c
Showing
21 changed files
with
1,944 additions
and
3,167 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,8 @@ | |
"version": "0.0.1", | ||
"license": "MIT", | ||
"author": "DarkSky <[email protected]>", | ||
"devDependencies": {}, | ||
"dependencies": { | ||
"@emotion/babel-plugin": "^11.10.2", | ||
"jotai": "^1.8.3" | ||
"jotai": "^1.13.1" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,9 @@ | |
"version": "0.0.1", | ||
"license": "MIT", | ||
"author": "DarkSky <[email protected]>", | ||
"devDependencies": {}, | ||
"dependencies": { | ||
"@types/wicg-file-system-access": "^2020.9.5", | ||
"file-selector": "^0.6.0", | ||
"yjs": "^13.5.42" | ||
"yjs": "^13.5.48" | ||
} | ||
} |
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 was deleted.
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 |
---|---|---|
|
@@ -4,8 +4,7 @@ | |
"license": "MIT", | ||
"author": "DarkSky <[email protected]>", | ||
"dependencies": { | ||
"jotai": "^1.9.0", | ||
"nanoid": "^4.0.0", | ||
"preact": "^10.11.2" | ||
"jotai": "^1.13.1", | ||
"nanoid": "^4.0.1" | ||
} | ||
} |
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 was deleted.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,15 @@ | |
"version": "0.0.0", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "nx serve", | ||
"build": "nx build", | ||
"test": "nx test" | ||
"dev": "nx serve", | ||
"build": "nx build" | ||
}, | ||
"private": true, | ||
"dependencies": { | ||
"@babel/preset-react": "^7.18.6", | ||
"@emotion/react": "^11.10.5", | ||
"@emotion/styled": "^11.10.5", | ||
"@nrwl/webpack": "^15.8.3", | ||
"core-js": "^3.26.0", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
|
@@ -20,18 +21,17 @@ | |
}, | ||
"devDependencies": { | ||
"@jscutlery/semver": "^2.29.2", | ||
"@nrwl/cli": "15.0.11", | ||
"@nrwl/eslint-plugin-nx": "15.0.11", | ||
"@nrwl/linter": "15.0.11", | ||
"@nrwl/nx-cloud": "latest", | ||
"@nrwl/react": "15.0.11", | ||
"@nrwl/web": "15.0.11", | ||
"@nrwl/workspace": "15.0.11", | ||
"@nrwl/cli": "15.8.3", | ||
"@nrwl/eslint-plugin-nx": "15.8.3", | ||
"@nrwl/linter": "15.8.3", | ||
"@nrwl/nx-cloud": "^15.1.1", | ||
"@nrwl/react": "15.8.3", | ||
"@nrwl/web": "15.8.3", | ||
"@nrwl/workspace": "15.8.3", | ||
"@rollup/plugin-replace": "^5.0.2", | ||
"@swc/cli": "^0.1.57", | ||
"@swc/core": "^1.3.14", | ||
"@swc/helpers": "^0.4.12", | ||
"@testing-library/react": "13.4.0", | ||
"@types/node": "18.11.9", | ||
"@types/react": "18.0.25", | ||
"@types/react-dom": "18.0.8", | ||
|
@@ -47,13 +47,12 @@ | |
"eslint-plugin-jsx-a11y": "6.6.1", | ||
"eslint-plugin-react": "7.31.10", | ||
"eslint-plugin-react-hooks": "4.6.0", | ||
"html-webpack-plugin": "^5.5.0", | ||
"nx": "15.0.11", | ||
"prettier": "^2.7.1", | ||
"react-test-renderer": "18.2.0", | ||
"nx": "15.8.3", | ||
"prettier": "^2.8.4", | ||
"terser-webpack-plugin": "^5.3.6", | ||
"ts-node": "10.9.1", | ||
"typescript": "^4.8.4", | ||
"webpack-bundle-analyzer": "^4.7.0" | ||
} | ||
"typescript": "^4.9.5", | ||
"webpack-bundle-analyzer": "^4.8.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.