Compare commits
16 Commits
@blitzjs/a
...
@blitzjs/a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
009664e0f5 | ||
|
|
3110522dca | ||
|
|
7269ac2bc5 | ||
|
|
7a7ce2229e | ||
|
|
10c23d3d20 | ||
|
|
d93b05d0ac | ||
|
|
aafdc5b4c4 | ||
|
|
37ef42811b | ||
|
|
34cc29e40c | ||
|
|
bee19a259d | ||
|
|
9ada0f6661 | ||
|
|
425559d360 | ||
|
|
0411689b1d | ||
|
|
0d3514cd27 | ||
|
|
a9edde6d83 | ||
|
|
5c5decbce2 |
6
.changeset/late-steaks-give.md
Normal file
6
.changeset/late-steaks-give.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
"@blitzjs/next": patch
|
||||
"@blitzjs/rpc": patch
|
||||
---
|
||||
|
||||
Support RPC error middleware
|
||||
5
.changeset/nervous-dolls-rule.md
Normal file
5
.changeset/nervous-dolls-rule.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@blitzjs/codemod": patch
|
||||
---
|
||||
|
||||
Move middlewares from blitz config to blitz server with codemod
|
||||
@@ -17,7 +17,8 @@
|
||||
"toolkit-app": "1.0.0",
|
||||
"test-qm": "0.0.0",
|
||||
"test-no-suspense": "0.0.0",
|
||||
"test-trailing-slash": "0.0.0"
|
||||
"test-trailing-slash": "0.0.0",
|
||||
"test-middleware": "0.0.0"
|
||||
},
|
||||
"changesets": [
|
||||
"big-phones-bow",
|
||||
@@ -41,11 +42,13 @@
|
||||
"green-papayas-do",
|
||||
"healthy-rice-shout",
|
||||
"hot-drinks-approve",
|
||||
"late-steaks-give",
|
||||
"lovely-colts-share",
|
||||
"lucky-cows-try",
|
||||
"modern-cameras-pull",
|
||||
"moody-squids-cheer",
|
||||
"nervous-beds-travel",
|
||||
"nervous-dolls-rule",
|
||||
"nice-starfishes-live",
|
||||
"nine-onions-admire",
|
||||
"ninety-pets-heal",
|
||||
@@ -57,6 +60,7 @@
|
||||
"poor-shrimps-think",
|
||||
"purple-singers-greet",
|
||||
"quiet-feet-travel",
|
||||
"quiet-pans-hunt",
|
||||
"rich-chairs-invent",
|
||||
"sharp-falcons-begin",
|
||||
"shy-olives-hang",
|
||||
@@ -66,6 +70,7 @@
|
||||
"swift-drinks-dress",
|
||||
"tame-keys-reply",
|
||||
"tasty-news-collect",
|
||||
"ten-hairs-listen",
|
||||
"ten-rivers-burn",
|
||||
"tender-pianos-check",
|
||||
"thick-parrots-float",
|
||||
|
||||
5
.changeset/quiet-pans-hunt.md
Normal file
5
.changeset/quiet-pans-hunt.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@blitzjs/next": patch
|
||||
---
|
||||
|
||||
Removes the suspense wrapper from withBlitz since it's not needed
|
||||
5
.changeset/ten-hairs-listen.md
Normal file
5
.changeset/ten-hairs-listen.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@blitzjs/next": patch
|
||||
---
|
||||
|
||||
Allow customizing PreviewData in gSSP
|
||||
2
.github/CODEOWNERS
vendored
2
.github/CODEOWNERS
vendored
@@ -1,5 +1,5 @@
|
||||
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
|
||||
|
||||
* @flybayer @beerose
|
||||
* @flybayer @beerose @dillonraphael
|
||||
|
||||
packages/generator/templates**/* @flybayer
|
||||
|
||||
43
.github/release-drafter.yml
vendored
Normal file
43
.github/release-drafter.yml
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
name-template: "v$RESOLVED_VERSION"
|
||||
tag-template: "v$RESOLVED_VERSION"
|
||||
# categories:
|
||||
# - title: 'Blitz'
|
||||
# label: 'blitz'
|
||||
# - title: '@blitzjs/next'
|
||||
# label: 'blitz-next'
|
||||
# - title: '@blitzjs/rpc'
|
||||
# label: 'blitz-rpc'
|
||||
# - title: '@blitzjs/auth'
|
||||
# label: 'blitz-auth'
|
||||
version-resolver:
|
||||
major:
|
||||
labels:
|
||||
- "major"
|
||||
minor:
|
||||
labels:
|
||||
- "minor"
|
||||
patch:
|
||||
labels:
|
||||
- "patch"
|
||||
default: patch
|
||||
# autolabeler:
|
||||
# - label: 'blitz'
|
||||
# title:
|
||||
# - '/blitz/i'
|
||||
# - label: 'blitz-next'
|
||||
# title:
|
||||
# - '/@blitzjs\/next/i'
|
||||
# - label: 'blitz-rpc'
|
||||
# title:
|
||||
# - '/@blitzjs\/rpc/i'
|
||||
# - label: 'blitz-auth'
|
||||
# title:
|
||||
# - '/@blitzjs\/auth/i'
|
||||
template: |
|
||||
## What’s Changed
|
||||
|
||||
$CHANGES
|
||||
|
||||
## Contributors
|
||||
|
||||
$CONTRIBUTORS
|
||||
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
@@ -7,9 +7,15 @@ on:
|
||||
|
||||
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
@@ -32,13 +38,19 @@ jobs:
|
||||
uses: pnpm/action-setup@646cdf48217256a3d0b80361c5a50727664284f2
|
||||
with:
|
||||
version: 6.32.6
|
||||
- run: pnpm install --frozen-lockfile
|
||||
- run: pnpm install --no-frozen-lockfile
|
||||
- run: pnpm build
|
||||
|
||||
- name: Create Release Pull Request
|
||||
uses: changesets/action@v1
|
||||
with:
|
||||
publish: pnpm release
|
||||
createGithubReleases: false
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
- name: Github Release
|
||||
uses: release-drafter/release-drafter@v5.19.0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
"@blitzjs/rpc": "workspace:*",
|
||||
"@hookform/resolvers": "2.8.8",
|
||||
"@prisma/client": "3.9.0",
|
||||
"blitz": "workspace:2.0.0-alpha.44",
|
||||
"blitz": "workspace:2.0.0-alpha.46",
|
||||
"next": "12.1.6-canary.17",
|
||||
"prisma": "3.9.0",
|
||||
"react": "18.0.0",
|
||||
|
||||
2
integration-tests/middleware/.env
Normal file
2
integration-tests/middleware/.env
Normal file
@@ -0,0 +1,2 @@
|
||||
SESSION_SECRET_KEY=hsdenhJfpLHrGjgdgg3jdF8g2bYD2PaQ
|
||||
HEADLESS=true
|
||||
1
integration-tests/middleware/.eslintrc.js
Normal file
1
integration-tests/middleware/.eslintrc.js
Normal file
@@ -0,0 +1 @@
|
||||
module.exports = require("@blitzjs/config/eslint")
|
||||
3
integration-tests/middleware/.gitignore
vendored
Normal file
3
integration-tests/middleware/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
node_modules
|
||||
# Keep environment variables out of version control
|
||||
*.sqlite
|
||||
5
integration-tests/middleware/app/blitz-client.ts
Normal file
5
integration-tests/middleware/app/blitz-client.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import {setupBlitzClient} from "@blitzjs/next"
|
||||
|
||||
const {withBlitz} = setupBlitzClient({plugins: []})
|
||||
|
||||
export {withBlitz}
|
||||
7
integration-tests/middleware/app/blitz-server.ts
Normal file
7
integration-tests/middleware/app/blitz-server.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import {setupBlitzServer} from "@blitzjs/next"
|
||||
|
||||
const {gSSP, gSP, api} = setupBlitzServer({
|
||||
plugins: [],
|
||||
})
|
||||
|
||||
export {gSSP, gSP, api}
|
||||
3
integration-tests/middleware/app/queries/getBasic.ts
Normal file
3
integration-tests/middleware/app/queries/getBasic.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export default async function getBasic() {
|
||||
return {success: true}
|
||||
}
|
||||
5
integration-tests/middleware/next-env.d.ts
vendored
Normal file
5
integration-tests/middleware/next-env.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
/// <reference types="next" />
|
||||
/// <reference types="next/image-types/global" />
|
||||
|
||||
// NOTE: This file should not be edited
|
||||
// see https://nextjs.org/docs/basic-features/typescript for more information.
|
||||
4
integration-tests/middleware/next.config.js
Normal file
4
integration-tests/middleware/next.config.js
Normal file
@@ -0,0 +1,4 @@
|
||||
const {withBlitz} = require("@blitzjs/next")
|
||||
module.exports = withBlitz({
|
||||
// update me
|
||||
})
|
||||
34
integration-tests/middleware/package.json
Normal file
34
integration-tests/middleware/package.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "test-middleware",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start:dev": "next dev",
|
||||
"test": "vitest run",
|
||||
"test-watch": "vitest",
|
||||
"start": "next start",
|
||||
"lint": "next lint",
|
||||
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next"
|
||||
},
|
||||
"dependencies": {
|
||||
"@blitzjs/config": "workspace:*",
|
||||
"@blitzjs/next": "workspace:*",
|
||||
"@blitzjs/rpc": "workspace:*",
|
||||
"blitz": "workspace:*",
|
||||
"next": "12.1.6-canary.17",
|
||||
"react": "18.0.0",
|
||||
"react-dom": "18.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@next/bundle-analyzer": "12.0.8",
|
||||
"@types/express": "4.17.13",
|
||||
"@types/fs-extra": "9.0.13",
|
||||
"@types/node-fetch": "2.6.1",
|
||||
"@types/react": "18.0.1",
|
||||
"eslint": "7.32.0",
|
||||
"fs-extra": "10.0.1",
|
||||
"get-port": "6.1.2",
|
||||
"node-fetch": "3.2.3",
|
||||
"typescript": "^4.5.3"
|
||||
}
|
||||
}
|
||||
34
integration-tests/middleware/pages/_app.tsx
Normal file
34
integration-tests/middleware/pages/_app.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
import {ErrorFallbackProps, ErrorComponent, ErrorBoundary, AppProps} from "@blitzjs/next"
|
||||
import {AuthenticationError, AuthorizationError} from "blitz"
|
||||
import React from "react"
|
||||
import {withBlitz} from "../app/blitz-client"
|
||||
|
||||
function RootErrorFallback({error}: ErrorFallbackProps) {
|
||||
if (error instanceof AuthenticationError) {
|
||||
return <div id="error">Error: You are not authenticated</div>
|
||||
} else if (error instanceof AuthorizationError) {
|
||||
return (
|
||||
<ErrorComponent
|
||||
statusCode={error.statusCode}
|
||||
title="Sorry, you are not authorized to access this"
|
||||
/>
|
||||
)
|
||||
} else {
|
||||
return (
|
||||
<ErrorComponent
|
||||
statusCode={(error as any)?.statusCode || 400}
|
||||
title={error.message || error.name}
|
||||
/>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
function MyApp({Component, pageProps}: AppProps) {
|
||||
return (
|
||||
<ErrorBoundary FallbackComponent={RootErrorFallback}>
|
||||
<Component {...pageProps} />
|
||||
</ErrorBoundary>
|
||||
)
|
||||
}
|
||||
|
||||
export default withBlitz(MyApp)
|
||||
7
integration-tests/middleware/pages/_middleware.ts
Normal file
7
integration-tests/middleware/pages/_middleware.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import {NextResponse} from "next/server"
|
||||
|
||||
export function middleware() {
|
||||
const response = NextResponse.next()
|
||||
response.headers.set("global-middleware", "true")
|
||||
return response
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
import {rpcHandler} from "@blitzjs/rpc"
|
||||
|
||||
export default rpcHandler({onError: console.log})
|
||||
5
integration-tests/middleware/pages/api/test.ts
Normal file
5
integration-tests/middleware/pages/api/test.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import {api} from "../../app/blitz-server"
|
||||
|
||||
export default api((_req, res) => {
|
||||
res.status(200).json({success: true})
|
||||
})
|
||||
11
integration-tests/middleware/pages/index.tsx
Normal file
11
integration-tests/middleware/pages/index.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
export const getServerSideProps = () => {
|
||||
return {props: {}}
|
||||
}
|
||||
|
||||
export default function Web() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Web</h1>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
72
integration-tests/middleware/test/index.test.ts
Normal file
72
integration-tests/middleware/test/index.test.ts
Normal file
@@ -0,0 +1,72 @@
|
||||
import {describe, it, expect, beforeAll, afterAll} from "vitest"
|
||||
import {
|
||||
killApp,
|
||||
findPort,
|
||||
launchApp,
|
||||
nextBuild,
|
||||
nextStart,
|
||||
fetchViaHTTP,
|
||||
} from "../../utils/next-test-utils"
|
||||
import {join} from "path"
|
||||
|
||||
let app: any
|
||||
let appPort: number
|
||||
const appDir = join(__dirname, "../")
|
||||
|
||||
const runTests = () => {
|
||||
describe("Middleware", () => {
|
||||
describe("global middleware", () => {
|
||||
it(
|
||||
"should call global middleware on api calls",
|
||||
async () => {
|
||||
const res = await fetchViaHTTP(appPort, "/api/test", null, {
|
||||
method: "GET",
|
||||
})
|
||||
expect(res.headers.get("global-middleware")).toBe("true")
|
||||
},
|
||||
5000 * 60 * 2,
|
||||
)
|
||||
|
||||
it(
|
||||
"should call global middleware on rpc calls",
|
||||
async () => {
|
||||
const res = await fetchViaHTTP(appPort, "/api/rpc/getBasic", null, {
|
||||
method: "GET",
|
||||
})
|
||||
expect(res.headers.get("global-middleware")).toBe("true")
|
||||
},
|
||||
5000 * 60 * 2,
|
||||
)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
describe("Middleware Tests", () => {
|
||||
describe("dev mode", () => {
|
||||
beforeAll(async () => {
|
||||
try {
|
||||
appPort = await findPort()
|
||||
app = await launchApp(appDir, appPort, {cwd: process.cwd()})
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
}
|
||||
}, 5000 * 60 * 2)
|
||||
afterAll(async () => await killApp(app))
|
||||
runTests()
|
||||
})
|
||||
|
||||
describe("server mode", () => {
|
||||
beforeAll(async () => {
|
||||
try {
|
||||
await nextBuild(appDir)
|
||||
appPort = await findPort()
|
||||
app = await nextStart(appDir, appPort, {cwd: process.cwd()})
|
||||
} catch (err) {
|
||||
console.log(err)
|
||||
}
|
||||
}, 5000 * 60 * 2)
|
||||
afterAll(async () => await killApp(app))
|
||||
|
||||
runTests()
|
||||
})
|
||||
})
|
||||
11
integration-tests/middleware/tsconfig.json
Normal file
11
integration-tests/middleware/tsconfig.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"extends": "@blitzjs/config/tsconfig.nextjs.json",
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
||||
"compilerOptions": {
|
||||
"paths": {
|
||||
"react": ["./node_modules/@types/react"]
|
||||
}
|
||||
},
|
||||
"exclude": ["node_modules"],
|
||||
"baseUrl": "."
|
||||
}
|
||||
@@ -1,5 +1,17 @@
|
||||
# @blitzjs/auth
|
||||
|
||||
## 2.0.0-alpha.46
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- blitz@2.0.0-alpha.46
|
||||
|
||||
## 2.0.0-alpha.45
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- blitz@2.0.0-alpha.45
|
||||
|
||||
## 2.0.0-alpha.44
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blitzjs/auth",
|
||||
"version": "2.0.0-alpha.44",
|
||||
"version": "2.0.0-alpha.46",
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"predev": "wait-on -d 250 ../blitz/dist/index-server.d.ts",
|
||||
@@ -26,7 +26,7 @@
|
||||
"@types/secure-password": "3.1.1",
|
||||
"b64-lite": "1.4.0",
|
||||
"bad-behavior": "1.0.1",
|
||||
"blitz": "2.0.0-alpha.44",
|
||||
"blitz": "2.0.0-alpha.46",
|
||||
"cookie": "0.4.1",
|
||||
"cookie-session": "2.0.0",
|
||||
"debug": "4.3.3",
|
||||
@@ -39,7 +39,7 @@
|
||||
"url": "0.11.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.44",
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.46",
|
||||
"@testing-library/react": "13.0.0",
|
||||
"@testing-library/react-hooks": "7.0.2",
|
||||
"@types/cookie": "0.4.1",
|
||||
|
||||
@@ -1,5 +1,21 @@
|
||||
# @blitzjs/next
|
||||
|
||||
## 2.0.0-alpha.46
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- bee19a25: Support RPC error middleware
|
||||
- 9ada0f66: Allow customizing PreviewData in gSSP
|
||||
- Updated dependencies [bee19a25]
|
||||
- @blitzjs/rpc@2.0.0-alpha.46
|
||||
|
||||
## 2.0.0-alpha.45
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 5c5decbc: Removes the suspense wrapper from withBlitz since it's not needed
|
||||
- @blitzjs/rpc@2.0.0-alpha.45
|
||||
|
||||
## 2.0.0-alpha.44
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blitzjs/next",
|
||||
"version": "2.0.0-alpha.44",
|
||||
"version": "2.0.0-alpha.46",
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"dev": "pnpm predev && pnpm watch unbuild src --wait=0.2",
|
||||
@@ -23,7 +23,7 @@
|
||||
"eslint.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@blitzjs/rpc": "2.0.0-alpha.44",
|
||||
"@blitzjs/rpc": "2.0.0-alpha.46",
|
||||
"@types/hoist-non-react-statics": "3.3.1",
|
||||
"debug": "4.3.3",
|
||||
"fs-extra": "10.0.1",
|
||||
@@ -32,7 +32,7 @@
|
||||
"superjson": "1.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.44",
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.46",
|
||||
"@testing-library/dom": "8.13.0",
|
||||
"@testing-library/jest-dom": "5.16.3",
|
||||
"@testing-library/react": "13.0.0",
|
||||
@@ -42,7 +42,7 @@
|
||||
"@types/react": "18.0.1",
|
||||
"@types/react-dom": "17.0.14",
|
||||
"@types/testing-library__react-hooks": "4.0.0",
|
||||
"blitz": "2.0.0-alpha.44",
|
||||
"blitz": "2.0.0-alpha.46",
|
||||
"cross-spawn": "7.0.3",
|
||||
"find-up": "4.1.0",
|
||||
"next": "12.1.6-canary.17",
|
||||
|
||||
@@ -51,11 +51,7 @@ const buildWithBlitz = <TPlugins extends readonly ClientPlugin<object>[]>(plugin
|
||||
<>
|
||||
{/* @ts-ignore todo */}
|
||||
{props.Component.suppressFirstRenderFlicker && <NoPageFlicker />}
|
||||
{mounted && (
|
||||
<React.Suspense fallback="Loading...">
|
||||
<UserAppRoot {...props} Component={component} />
|
||||
</React.Suspense>
|
||||
)}
|
||||
{mounted && <UserAppRoot {...props} Component={component} />}
|
||||
</>
|
||||
</BlitzProvider>
|
||||
)
|
||||
|
||||
@@ -23,6 +23,7 @@ import {IncomingMessage, ServerResponse} from "http"
|
||||
import {withSuperJsonProps} from "./superjson"
|
||||
import {ResolverBasePath} from "@blitzjs/rpc/src/index-server"
|
||||
import {ParsedUrlQuery} from "querystring"
|
||||
import {PreviewData} from "next/types"
|
||||
|
||||
export * from "./index-browser"
|
||||
|
||||
@@ -40,21 +41,32 @@ export type NextApiHandler = (
|
||||
|
||||
type SetupBlitzOptions = {
|
||||
plugins: BlitzServerPlugin<RequestMiddleware, Ctx>[]
|
||||
onError?: (err: Error) => void
|
||||
}
|
||||
|
||||
export type BlitzGSSPHandler<TProps, Query extends ParsedUrlQuery = ParsedUrlQuery> = ({
|
||||
export type BlitzGSSPHandler<
|
||||
TProps,
|
||||
Query extends ParsedUrlQuery = ParsedUrlQuery,
|
||||
PD extends PreviewData = PreviewData,
|
||||
> = ({
|
||||
ctx,
|
||||
req,
|
||||
res,
|
||||
...args
|
||||
}: Parameters<GetServerSideProps<TProps>>[0] & {ctx: Ctx}) => ReturnType<
|
||||
GetServerSideProps<TProps, Query>
|
||||
}: Parameters<GetServerSideProps<TProps, Query, PD>>[0] & {ctx: Ctx}) => ReturnType<
|
||||
GetServerSideProps<TProps, Query, PD>
|
||||
>
|
||||
|
||||
export type BlitzGSPHandler<TProps> = ({
|
||||
export type BlitzGSPHandler<
|
||||
TProps,
|
||||
Query extends ParsedUrlQuery = ParsedUrlQuery,
|
||||
PD extends PreviewData = PreviewData,
|
||||
> = ({
|
||||
ctx,
|
||||
...args
|
||||
}: Parameters<GetStaticProps<TProps>>[0] & {ctx: Ctx}) => ReturnType<GetStaticProps<TProps>>
|
||||
}: Parameters<GetStaticProps<TProps, Query, PD>>[0] & {ctx: Ctx}) => ReturnType<
|
||||
GetStaticProps<TProps, Query, PD>
|
||||
>
|
||||
|
||||
export type BlitzAPIHandler = (
|
||||
req: Parameters<NextApiHandler>[0],
|
||||
@@ -62,14 +74,14 @@ export type BlitzAPIHandler = (
|
||||
ctx: Ctx,
|
||||
) => ReturnType<NextApiHandler>
|
||||
|
||||
export const setupBlitzServer = ({plugins}: SetupBlitzOptions) => {
|
||||
export const setupBlitzServer = ({plugins, onError}: SetupBlitzOptions) => {
|
||||
const middlewares = plugins.flatMap((p) => p.requestMiddlewares)
|
||||
const contextMiddleware = plugins.flatMap((p) => p.contextMiddleware).filter(Boolean)
|
||||
|
||||
const gSSP =
|
||||
<TProps, Query extends ParsedUrlQuery = ParsedUrlQuery>(
|
||||
handler: BlitzGSSPHandler<TProps, Query>,
|
||||
): GetServerSideProps<TProps> =>
|
||||
<TProps, Query extends ParsedUrlQuery = ParsedUrlQuery, PD extends PreviewData = PreviewData>(
|
||||
handler: BlitzGSSPHandler<TProps, Query, PD>,
|
||||
): GetServerSideProps<TProps, Query, PD> =>
|
||||
async ({req, res, ...rest}) => {
|
||||
await handleRequestWithMiddleware<IncomingMessage, ServerResponse>(req, res, middlewares)
|
||||
const ctx = contextMiddleware.reduceRight(
|
||||
@@ -93,12 +105,19 @@ export const setupBlitzServer = ({plugins}: SetupBlitzOptions) => {
|
||||
ctx.prefetchQuery = prefetchQuery
|
||||
ctx.prefetchInfiniteQuery = (...args) => prefetchQuery(...args, true)
|
||||
|
||||
const result = await handler({req, res, ctx, ...rest})
|
||||
return withSuperJsonProps(withDehydratedState(result, queryClient))
|
||||
try {
|
||||
const result = await handler({req, res, ctx, ...rest})
|
||||
return withSuperJsonProps(withDehydratedState(result, queryClient))
|
||||
} catch (err: any) {
|
||||
onError?.(err)
|
||||
throw err
|
||||
}
|
||||
}
|
||||
|
||||
const gSP =
|
||||
<TProps>(handler: BlitzGSPHandler<TProps>): GetStaticProps<TProps> =>
|
||||
<TProps, Query extends ParsedUrlQuery = ParsedUrlQuery, PD extends PreviewData = PreviewData>(
|
||||
handler: BlitzGSPHandler<TProps, Query, PD>,
|
||||
): GetStaticProps<TProps, Query, PD> =>
|
||||
async (context) => {
|
||||
const ctx = contextMiddleware.reduceRight((y, f) => (f ? f(y) : y), {} as Ctx)
|
||||
let queryClient: null | QueryClient = null
|
||||
@@ -118,8 +137,13 @@ export const setupBlitzServer = ({plugins}: SetupBlitzOptions) => {
|
||||
ctx.prefetchQuery = prefetchQuery
|
||||
ctx.prefetchInfiniteQuery = (...args) => prefetchQuery(...args, true)
|
||||
|
||||
const result = await handler({...context, ctx: ctx})
|
||||
return withSuperJsonProps(withDehydratedState(result, queryClient))
|
||||
try {
|
||||
const result = await handler({...context, ctx: ctx})
|
||||
return withSuperJsonProps(withDehydratedState(result, queryClient))
|
||||
} catch (err: any) {
|
||||
onError?.(err)
|
||||
throw err
|
||||
}
|
||||
}
|
||||
|
||||
const api =
|
||||
@@ -128,7 +152,8 @@ export const setupBlitzServer = ({plugins}: SetupBlitzOptions) => {
|
||||
try {
|
||||
await handleRequestWithMiddleware(req, res, middlewares)
|
||||
return handler(req, res, res.blitzCtx)
|
||||
} catch (error) {
|
||||
} catch (error: any) {
|
||||
onError?.(error)
|
||||
return res.status(400).send(error)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,20 @@
|
||||
# @blitzjs/rpc
|
||||
|
||||
## 2.0.0-alpha.46
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- bee19a25: Support RPC error middleware
|
||||
- @blitzjs/auth@2.0.0-alpha.46
|
||||
- blitz@2.0.0-alpha.46
|
||||
|
||||
## 2.0.0-alpha.45
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @blitzjs/auth@2.0.0-alpha.45
|
||||
- blitz@2.0.0-alpha.45
|
||||
|
||||
## 2.0.0-alpha.44
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blitzjs/rpc",
|
||||
"version": "2.0.0-alpha.44",
|
||||
"version": "2.0.0-alpha.46",
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"predev": "wait-on -d 250 ../blitz/dist/index-server.d.ts && wait-on -d 250 ../blitz-auth/dist/index-browser.d.ts",
|
||||
@@ -20,7 +20,7 @@
|
||||
"dist/**"
|
||||
],
|
||||
"dependencies": {
|
||||
"@blitzjs/auth": "2.0.0-alpha.44",
|
||||
"@blitzjs/auth": "2.0.0-alpha.46",
|
||||
"b64-lite": "1.4.0",
|
||||
"bad-behavior": "1.0.1",
|
||||
"chalk": "^4.1.0",
|
||||
@@ -30,11 +30,11 @@
|
||||
"zod": "3.10.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.44",
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.46",
|
||||
"@types/debug": "4.1.7",
|
||||
"@types/react": "18.0.1",
|
||||
"@types/react-dom": "17.0.14",
|
||||
"blitz": "2.0.0-alpha.44",
|
||||
"blitz": "2.0.0-alpha.46",
|
||||
"next": "12.1.6-canary.17",
|
||||
"react": "18.0.0",
|
||||
"react-dom": "18.0.0",
|
||||
@@ -43,7 +43,7 @@
|
||||
"watch": "1.0.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"blitz": "2.0.0-alpha.44",
|
||||
"blitz": "2.0.0-alpha.46",
|
||||
"next": "*"
|
||||
},
|
||||
"publishConfig": {
|
||||
|
||||
@@ -13,6 +13,7 @@ export * from "./resolver"
|
||||
function isObject(value: unknown): value is Record<string | symbol, unknown> {
|
||||
return typeof value === "object" && value !== null
|
||||
}
|
||||
|
||||
function getGlobalObject<T extends Record<string, unknown>>(key: string, defaultValue: T): T {
|
||||
assert(key.startsWith("__internal_blitz"), "unsupported key")
|
||||
if (typeof global === "undefined") {
|
||||
@@ -180,6 +181,9 @@ export function rpcHandler(config: RpcConfig) {
|
||||
if (error._clearStack) {
|
||||
delete error.stack
|
||||
}
|
||||
|
||||
config.onError?.(error)
|
||||
|
||||
log.error(error)
|
||||
newLine()
|
||||
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# blitz
|
||||
|
||||
## 2.0.0-alpha.46
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @blitzjs/generator@2.0.0-alpha.46
|
||||
|
||||
## 2.0.0-alpha.45
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @blitzjs/generator@2.0.0-alpha.45
|
||||
|
||||
## 2.0.0-alpha.44
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "blitz",
|
||||
"version": "2.0.0-alpha.44",
|
||||
"version": "2.0.0-alpha.46",
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"dev": "watch unbuild src --wait=0.2",
|
||||
@@ -23,7 +23,7 @@
|
||||
"blitz": "bin/blitz"
|
||||
},
|
||||
"dependencies": {
|
||||
"@blitzjs/generator": "2.0.0-alpha.44",
|
||||
"@blitzjs/generator": "2.0.0-alpha.46",
|
||||
"arg": "5.0.1",
|
||||
"chalk": "^4.1.0",
|
||||
"console-table-printer": "2.10.0",
|
||||
@@ -52,7 +52,7 @@
|
||||
"watchpack": "2.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.44",
|
||||
"@blitzjs/config": "workspace:2.0.0-alpha.46",
|
||||
"@types/cookie": "0.4.1",
|
||||
"@types/cross-spawn": "6.0.2",
|
||||
"@types/debug": "4.1.7",
|
||||
|
||||
@@ -1,5 +1,20 @@
|
||||
# @blitzjs/codemod
|
||||
|
||||
## 2.0.0-alpha.46
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- aafdc5b4: Move middlewares from blitz config to blitz server with codemod
|
||||
- @blitzjs/generator@2.0.0-alpha.46
|
||||
- blitz@2.0.0-alpha.46
|
||||
|
||||
## 2.0.0-alpha.45
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @blitzjs/generator@2.0.0-alpha.45
|
||||
- blitz@2.0.0-alpha.45
|
||||
|
||||
## 2.0.0-alpha.44
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blitzjs/codemod",
|
||||
"version": "2.0.0-alpha.44",
|
||||
"version": "2.0.0-alpha.46",
|
||||
"scripts": {
|
||||
"build": "unbuild",
|
||||
"dev": "watch unbuild src --wait=0.2",
|
||||
@@ -25,9 +25,9 @@
|
||||
"@babel/plugin-proposal-class-properties": "7.17.12",
|
||||
"@babel/plugin-syntax-jsx": "7.17.12",
|
||||
"@babel/plugin-syntax-typescript": "7.17.12",
|
||||
"@blitzjs/generator": "2.0.0-alpha.44",
|
||||
"@blitzjs/generator": "2.0.0-alpha.46",
|
||||
"arg": "5.0.1",
|
||||
"blitz": "2.0.0-alpha.44",
|
||||
"blitz": "2.0.0-alpha.46",
|
||||
"chalk": "^4.1.0",
|
||||
"cross-spawn": "7.0.3",
|
||||
"debug": "4.3.3",
|
||||
|
||||
@@ -403,6 +403,63 @@ const upgradeLegacy = async () => {
|
||||
},
|
||||
})
|
||||
|
||||
steps.push({
|
||||
name: "Move middleware to blitz server file",
|
||||
action: async () => {
|
||||
const blitzConfigProgram = getCollectionFromSource(blitzConfigFile)
|
||||
const middlewareArray = blitzConfigProgram.find(
|
||||
j.Identifier,
|
||||
(node) => node.name === "middleware",
|
||||
)
|
||||
if (middlewareArray.length) {
|
||||
const middlewares = middlewareArray
|
||||
.get()
|
||||
.parentPath.value.value.elements.filter((a: any) => a.callee.name !== "sessionMiddleware")
|
||||
const blitzServerProgram = getCollectionFromSource(
|
||||
path.join(appDir, `blitz-server.${isTypescript ? "ts" : "js"}`),
|
||||
)
|
||||
|
||||
const pluginArray = blitzServerProgram.find(j.Identifier, (node) => node.name === "plugins")
|
||||
|
||||
pluginArray.get().parentPath.value.value.elements = [
|
||||
...pluginArray.get().parentPath.value.value.elements,
|
||||
...middlewares,
|
||||
]
|
||||
|
||||
let importStatements = []
|
||||
for (let nodes of blitzConfigProgram.get().value.program.body) {
|
||||
if (nodes.type === "ImportDeclaration") {
|
||||
if (nodes.source.value !== "blitz") {
|
||||
importStatements.push(nodes)
|
||||
}
|
||||
}
|
||||
|
||||
if (nodes.type === "VariableDeclaration") {
|
||||
if (
|
||||
nodes.declarations &&
|
||||
nodes.declarations.some((d: any) => d.init.type === "CallExpression")
|
||||
) {
|
||||
importStatements.push(nodes)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
importStatements.forEach((s) =>
|
||||
blitzServerProgram
|
||||
.get()
|
||||
.value.program.body.unshift(j.variableDeclaration(s.kind, s.declarations)),
|
||||
)
|
||||
|
||||
fs.writeFileSync(
|
||||
`${appDir}/blitz-server.${isTypescript ? "ts" : "js"}`,
|
||||
blitzServerProgram.toSource(),
|
||||
)
|
||||
} else {
|
||||
log.error("Middleware array not found in blit config file")
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
steps.push({
|
||||
name: "create pages/api/rpc directory and add [[...blitz]].ts wildecard API route",
|
||||
action: async () => {
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
# @blitzjs/config
|
||||
|
||||
## 2.0.0-alpha.46
|
||||
|
||||
## 2.0.0-alpha.45
|
||||
|
||||
## 2.0.0-alpha.44
|
||||
|
||||
## 2.0.0-alpha.43
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@blitzjs/config",
|
||||
"private": true,
|
||||
"version": "2.0.0-alpha.44",
|
||||
"version": "2.0.0-alpha.46",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/eslint-plugin": "5.9.1",
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
# @blitzjs/generator
|
||||
|
||||
## 2.0.0-alpha.46
|
||||
|
||||
## 2.0.0-alpha.45
|
||||
|
||||
## 2.0.0-alpha.44
|
||||
|
||||
## 2.0.0-alpha.43
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blitzjs/generator",
|
||||
"version": "2.0.0-alpha.44",
|
||||
"version": "2.0.0-alpha.46",
|
||||
"scripts": {
|
||||
"dev": "watch unbuild src --wait=0.2",
|
||||
"build": "unbuild && pnpm build:templates",
|
||||
@@ -45,7 +45,7 @@
|
||||
"vinyl": "2.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "2.0.0-alpha.44",
|
||||
"@blitzjs/config": "2.0.0-alpha.46",
|
||||
"@juanm04/cpx": "2.0.1",
|
||||
"@types/babel__core": "7.1.19",
|
||||
"@types/diff": "5.0.2",
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
"@typescript-eslint/parser": "5.9.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@blitzjs/config": "2.0.0-alpha.44",
|
||||
"@blitzjs/config": "2.0.0-alpha.46",
|
||||
"@types/react": "18.0.1",
|
||||
"@types/react-dom": "17.0.14",
|
||||
"react": "18.0.0",
|
||||
|
||||
87
pnpm-lock.yaml
generated
87
pnpm-lock.yaml
generated
@@ -50,7 +50,7 @@ importers:
|
||||
"@types/node": 17.0.16
|
||||
"@types/preview-email": 2.0.1
|
||||
"@types/react": 18.0.1
|
||||
blitz: workspace:2.0.0-alpha.44
|
||||
blitz: workspace:2.0.0-alpha.45
|
||||
eslint: 7.32.0
|
||||
husky: 7.0.4
|
||||
jest: 27.5.1
|
||||
@@ -192,6 +192,45 @@ importers:
|
||||
node-fetch: 3.2.3
|
||||
typescript: 4.6.3
|
||||
|
||||
integration-tests/middleware:
|
||||
specifiers:
|
||||
"@blitzjs/config": workspace:*
|
||||
"@blitzjs/next": workspace:*
|
||||
"@blitzjs/rpc": workspace:*
|
||||
"@next/bundle-analyzer": 12.0.8
|
||||
"@types/express": 4.17.13
|
||||
"@types/fs-extra": 9.0.13
|
||||
"@types/node-fetch": 2.6.1
|
||||
"@types/react": 18.0.1
|
||||
blitz: workspace:*
|
||||
eslint: 7.32.0
|
||||
fs-extra: 10.0.1
|
||||
get-port: 6.1.2
|
||||
next: 12.1.6-canary.17
|
||||
node-fetch: 3.2.3
|
||||
react: 18.0.0
|
||||
react-dom: 18.0.0
|
||||
typescript: ^4.5.3
|
||||
dependencies:
|
||||
"@blitzjs/config": link:../../packages/config
|
||||
"@blitzjs/next": link:../../packages/blitz-next
|
||||
"@blitzjs/rpc": link:../../packages/blitz-rpc
|
||||
blitz: link:../../packages/blitz
|
||||
next: 12.1.6-canary.17_zpnidt7m3osuk7shl3s4oenomq
|
||||
react: 18.0.0
|
||||
react-dom: 18.0.0_react@18.0.0
|
||||
devDependencies:
|
||||
"@next/bundle-analyzer": 12.0.8
|
||||
"@types/express": 4.17.13
|
||||
"@types/fs-extra": 9.0.13
|
||||
"@types/node-fetch": 2.6.1
|
||||
"@types/react": 18.0.1
|
||||
eslint: 7.32.0
|
||||
fs-extra: 10.0.1
|
||||
get-port: 6.1.2
|
||||
node-fetch: 3.2.3
|
||||
typescript: 4.6.3
|
||||
|
||||
integration-tests/no-suspense:
|
||||
specifiers:
|
||||
"@blitzjs/auth": workspace:*
|
||||
@@ -281,7 +320,7 @@ importers:
|
||||
"@vitejs/plugin-react": 1.3.0
|
||||
delay: 5.0.0
|
||||
eslint: 7.32.0
|
||||
eslint-config-next: 12.1.6_axdrgrznzvogetqifwjbb2u7qy
|
||||
eslint-config-next: 12.2.0_hrkuebk64jiu2ut2d2sm4oylnu
|
||||
eslint-plugin-testing-library: 5.0.1_hrkuebk64jiu2ut2d2sm4oylnu
|
||||
jsdom: 19.0.0
|
||||
typescript: 4.6.3
|
||||
@@ -432,8 +471,8 @@ importers:
|
||||
|
||||
packages/blitz:
|
||||
specifiers:
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.44
|
||||
"@blitzjs/generator": 2.0.0-alpha.44
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.45
|
||||
"@blitzjs/generator": 2.0.0-alpha.45
|
||||
"@types/cookie": 0.4.1
|
||||
"@types/cross-spawn": 6.0.2
|
||||
"@types/debug": 4.1.7
|
||||
@@ -539,7 +578,7 @@ importers:
|
||||
|
||||
packages/blitz-auth:
|
||||
specifiers:
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.44
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.45
|
||||
"@testing-library/react": 13.0.0
|
||||
"@testing-library/react-hooks": 7.0.2
|
||||
"@types/b64-lite": 1.3.0
|
||||
@@ -553,7 +592,7 @@ importers:
|
||||
"@types/secure-password": 3.1.1
|
||||
b64-lite: 1.4.0
|
||||
bad-behavior: 1.0.1
|
||||
blitz: 2.0.0-alpha.44
|
||||
blitz: 2.0.0-alpha.45
|
||||
cookie: 0.4.1
|
||||
cookie-session: 2.0.0
|
||||
debug: 4.3.3
|
||||
@@ -604,8 +643,8 @@ importers:
|
||||
|
||||
packages/blitz-next:
|
||||
specifiers:
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.44
|
||||
"@blitzjs/rpc": 2.0.0-alpha.44
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.45
|
||||
"@blitzjs/rpc": 2.0.0-alpha.45
|
||||
"@testing-library/dom": 8.13.0
|
||||
"@testing-library/jest-dom": 5.16.3
|
||||
"@testing-library/react": 13.0.0
|
||||
@@ -616,7 +655,7 @@ importers:
|
||||
"@types/react": 18.0.1
|
||||
"@types/react-dom": 17.0.14
|
||||
"@types/testing-library__react-hooks": 4.0.0
|
||||
blitz: 2.0.0-alpha.44
|
||||
blitz: 2.0.0-alpha.45
|
||||
cross-spawn: 7.0.3
|
||||
debug: 4.3.3
|
||||
find-up: 4.1.0
|
||||
@@ -665,14 +704,14 @@ importers:
|
||||
|
||||
packages/blitz-rpc:
|
||||
specifiers:
|
||||
"@blitzjs/auth": 2.0.0-alpha.44
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.44
|
||||
"@blitzjs/auth": 2.0.0-alpha.45
|
||||
"@blitzjs/config": workspace:2.0.0-alpha.45
|
||||
"@types/debug": 4.1.7
|
||||
"@types/react": 18.0.1
|
||||
"@types/react-dom": 17.0.14
|
||||
b64-lite: 1.4.0
|
||||
bad-behavior: 1.0.1
|
||||
blitz: 2.0.0-alpha.44
|
||||
blitz: 2.0.0-alpha.45
|
||||
chalk: ^4.1.0
|
||||
debug: 4.3.3
|
||||
next: 12.1.6-canary.17
|
||||
@@ -714,12 +753,12 @@ importers:
|
||||
"@babel/plugin-syntax-typescript": 7.17.12
|
||||
"@babel/preset-env": 7.12.10
|
||||
"@blitzjs/config": workspace:*
|
||||
"@blitzjs/generator": 2.0.0-alpha.44
|
||||
"@blitzjs/generator": 2.0.0-alpha.45
|
||||
"@types/jscodeshift": 0.11.2
|
||||
"@types/node": 17.0.16
|
||||
arg: 5.0.1
|
||||
ast-types: 0.14.2
|
||||
blitz: 2.0.0-alpha.44
|
||||
blitz: 2.0.0-alpha.45
|
||||
chalk: ^4.1.0
|
||||
cross-spawn: 7.0.3
|
||||
debug: 4.3.3
|
||||
@@ -774,7 +813,7 @@ importers:
|
||||
"@babel/plugin-transform-typescript": 7.12.1
|
||||
"@babel/preset-env": 7.12.10
|
||||
"@babel/types": 7.12.10
|
||||
"@blitzjs/config": 2.0.0-alpha.44
|
||||
"@blitzjs/config": 2.0.0-alpha.45
|
||||
"@juanm04/cpx": 2.0.1
|
||||
"@mrleebo/prisma-ast": 0.2.6
|
||||
"@types/babel__core": 7.1.19
|
||||
@@ -865,7 +904,7 @@ importers:
|
||||
|
||||
packages/pkg-template:
|
||||
specifiers:
|
||||
"@blitzjs/config": 2.0.0-alpha.44
|
||||
"@blitzjs/config": 2.0.0-alpha.45
|
||||
"@types/react": 18.0.1
|
||||
"@types/react-dom": 17.0.14
|
||||
"@typescript-eslint/eslint-plugin": 5.9.1
|
||||
@@ -3407,10 +3446,10 @@ packages:
|
||||
glob: 7.1.7
|
||||
dev: false
|
||||
|
||||
/@next/eslint-plugin-next/12.1.6:
|
||||
/@next/eslint-plugin-next/12.2.0:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-yNUtJ90NEiYFT6TJnNyofKMPYqirKDwpahcbxBgSIuABwYOdkGwzos1ZkYD51Qf0diYwpQZBeVqElTk7Q2WNqw==,
|
||||
integrity: sha512-nIj5xV/z3dOfeBnE7qFAjUQZAi4pTlIMuusRM6s/T6lOz8x7mjY5s1ZkTUBmcjPVCb2VIv3CrMH0WZL6xfjZZg==,
|
||||
}
|
||||
dependencies:
|
||||
glob: 7.1.7
|
||||
@@ -8290,20 +8329,19 @@ packages:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/eslint-config-next/12.1.6_axdrgrznzvogetqifwjbb2u7qy:
|
||||
/eslint-config-next/12.2.0_hrkuebk64jiu2ut2d2sm4oylnu:
|
||||
resolution:
|
||||
{
|
||||
integrity: sha512-qoiS3g/EPzfCTkGkaPBSX9W0NGE/B1wNO3oWrd76QszVGrdpLggNqcO8+LR6MB0CNqtp9Q8NoeVrxNVbzM9hqA==,
|
||||
integrity: sha512-QWzNegadFXjQ0h3hixnLacRM9Kot85vQefyNsA8IeOnERZMz0Gvays1W6DMCjSxJbnCwuWaMXj9DCpar5IahRA==,
|
||||
}
|
||||
peerDependencies:
|
||||
eslint: ^7.23.0 || ^8.0.0
|
||||
next: ">=10.2.0"
|
||||
typescript: ">=3.3.1"
|
||||
peerDependenciesMeta:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
"@next/eslint-plugin-next": 12.1.6
|
||||
"@next/eslint-plugin-next": 12.2.0
|
||||
"@rushstack/eslint-patch": 1.1.3
|
||||
"@typescript-eslint/parser": 5.28.0_hrkuebk64jiu2ut2d2sm4oylnu
|
||||
eslint: 7.32.0
|
||||
@@ -8313,7 +8351,6 @@ packages:
|
||||
eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0
|
||||
eslint-plugin-react: 7.30.0_eslint@7.32.0
|
||||
eslint-plugin-react-hooks: 4.5.0_eslint@7.32.0
|
||||
next: 12.1.6-canary.17_zpnidt7m3osuk7shl3s4oenomq
|
||||
typescript: 4.6.3
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-webpack
|
||||
@@ -10875,7 +10912,7 @@ packages:
|
||||
pretty-format: 27.5.1
|
||||
slash: 3.0.0
|
||||
strip-json-comments: 3.1.1
|
||||
ts-node: 10.7.0_typescript@4.6.3
|
||||
ts-node: 10.7.0_fxg3r7oju3tntkxsvleuiot4fa
|
||||
transitivePeerDependencies:
|
||||
- bufferutil
|
||||
- canvas
|
||||
@@ -16056,7 +16093,6 @@ packages:
|
||||
typescript: 4.6.3
|
||||
v8-compile-cache-lib: 3.0.1
|
||||
yn: 3.1.1
|
||||
dev: false
|
||||
|
||||
/ts-node/10.7.0_typescript@4.6.3:
|
||||
resolution:
|
||||
@@ -16089,6 +16125,7 @@ packages:
|
||||
typescript: 4.6.3
|
||||
v8-compile-cache-lib: 3.0.1
|
||||
yn: 3.1.1
|
||||
dev: false
|
||||
|
||||
/tsconfig-paths/3.14.1:
|
||||
resolution:
|
||||
|
||||
Reference in New Issue
Block a user