Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #163 from commercelayer/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
gciotola authored May 2, 2024
2 parents 44f0591 + 643ab40 commit 87add1b
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 103 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.18"
"npm-check-updates": "^16.14.20"
},
"resolutions": {
"tar": "^6.2.1"
Expand Down
12 changes: 6 additions & 6 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,31 @@
"prepare": "touch ./public/config.local.js"
},
"dependencies": {
"@commercelayer/app-elements": "^1.23.2",
"@commercelayer/app-elements": "^1.24.0",
"@commercelayer/sdk": "5.38.0",
"@hookform/resolvers": "^3.3.4",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"swr": "^2.2.5",
"type-fest": "^4.16.0",
"type-fest": "^4.18.1",
"wouter": "^3.1.2",
"zod": "^3.23.3"
"zod": "^3.23.5"
},
"devDependencies": {
"@commercelayer/eslint-config-ts-react": "^1.4.5",
"@types/lodash": "^4.17.0",
"@types/node": "20.12.7",
"@types/node": "20.12.8",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"jsdom": "^24.0.0",
"rollup-plugin-external-globals": "^0.10.0",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.0"
"vitest": "^1.5.3"
}
}
5 changes: 1 addition & 4 deletions packages/app/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {
CoreSdkProvider,
ErrorBoundary,
MetaTags,
PageSkeleton,
TokenProvider,
createApp
} from '@commercelayer/app-elements'
Expand All @@ -27,9 +26,7 @@ createApp(
appSlug='orders'
devMode={isDev}
reauthenticateOnInvalidAuth={!isDev && props?.onInvalidAuth == null}
loadingElement={
props?.isInDashboard === true ? <PageSkeleton /> : <div />
}
loadingElement={<div />}
{...props}
>
<CoreSdkProvider>
Expand Down
Loading

0 comments on commit 87add1b

Please sign in to comment.