generated from graasp/graasp-repo
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: allow apps to render even when member is null (#406)
* fix: allow apps to render even when member is null * fix: update yarn * fix: add test for public app access
- Loading branch information
Showing
13 changed files
with
4,508 additions
and
4,761 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
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,11 +1,11 @@ | ||
checksumBehavior: update | ||
|
||
compressionLevel: mixed | ||
|
||
defaultSemverRangePrefix: "" | ||
|
||
nodeLinker: node-modules | ||
enableGlobalCache: false | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-3.6.4.cjs | ||
yarnPath: .yarn/releases/yarn-4.0.2.cjs |
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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
"prettier:write": "prettier --write {src,cypress}/**/*.{js,ts,tsx}", | ||
"hooks:uninstall": "husky uninstall", | ||
"hooks:install": "husky install", | ||
"cypress:open": "env-cmd -f ./.env.test cypress open", | ||
"cypress:open": "env-cmd -f ./.env.development cypress open", | ||
"cypress": "yarn test", | ||
"test": "yarn build:test && concurrently -k -s first \"yarn preview:test\" \"yarn cypress:run\"", | ||
"cypress:run": "env-cmd -f ./.env.test cypress run --browser chrome" | ||
|
@@ -35,15 +35,15 @@ | |
"@emotion/react": "11.11.1", | ||
"@emotion/styled": "11.11.0", | ||
"@graasp/chatbox": "3.0.0", | ||
"@graasp/query-client": "2.0.1", | ||
"@graasp/sdk": "2.0.1", | ||
"@graasp/translations": "1.19.4", | ||
"@graasp/ui": "4.0.0", | ||
"@graasp/query-client": "2.0.2", | ||
"@graasp/sdk": "2.1.0", | ||
"@graasp/translations": "1.20.0", | ||
"@graasp/ui": "4.0.1", | ||
"@mui/icons-material": "5.14.16", | ||
"@mui/lab": "5.0.0-alpha.151", | ||
"@mui/material": "5.14.16", | ||
"@sentry/react": "7.77.0", | ||
"i18next": "23.5.1", | ||
"i18next": "23.7.6", | ||
"lodash.truncate": "4.4.2", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
|
@@ -92,9 +92,5 @@ | |
"vite-plugin-checker": "^0.6.2", | ||
"vite-plugin-istanbul": "5.0.0" | ||
}, | ||
"resolutions": { | ||
"i18next": "23.5.1", | ||
"@graasp/sdk": "2.0.1" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]" | ||
} |
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.