1
0
mirror of synced 2026-02-03 18:01:02 -05:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Dillon Raphael
fb01cc7788 pnpmlock 2022-06-10 10:34:59 -04:00
github-actions[bot]
ac8c412da2 Version Packages (alpha) (#3419)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-06-10 10:31:19 -04:00
David
dfd2408e95 Added resolverBasePath option to rpc loaders (#3380)
Co-authored-by: beerose <alexsandra.sikora@gmail.com>
2022-06-08 14:50:00 -07:00
29 changed files with 341 additions and 230 deletions

View File

@@ -62,6 +62,7 @@
"two-kiwis-help",
"unlucky-papayas-sleep",
"violet-bags-leave",
"violet-lions-help",
"weak-suns-shave",
"wicked-ghosts-cough",
"wise-frogs-give"

View File

@@ -0,0 +1,5 @@
---
"@blitzjs/rpc": patch
---
Add resolverBasePath to Blitz config to change the way rpc routes are generated

1
.npmrc
View File

@@ -6,3 +6,4 @@ public-hoist-pattern[]=*types*
public-hoist-pattern[]=*eslint*
public-hoist-pattern[]=@prettier/plugin-*
public-hoist-pattern[]=*prettier-plugin-*
strict-peer-dependencies=false

View File

@@ -29,7 +29,7 @@
"@blitzjs/rpc": "workspace:*",
"@hookform/resolvers": "2.8.8",
"@prisma/client": "3.9.0",
"blitz": "workspace:2.0.0-alpha.33",
"blitz": "workspace:2.0.0-alpha.34",
"next": "12.1.6-canary.17",
"prisma": "3.9.0",
"react": "18.0.0",

View File

@@ -10,6 +10,7 @@ module.exports = withBlitz(
customServer: {
hotReload: false,
},
resolverBasePath: "root",
},
}),
)

View File

@@ -1,5 +1,11 @@
# @blitzjs/auth
## 2.0.0-alpha.34
### Patch Changes
- blitz@2.0.0-alpha.34
## 2.0.0-alpha.33
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/auth",
"version": "2.0.0-alpha.33",
"version": "2.0.0-alpha.34",
"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.33",
"blitz": "2.0.0-alpha.34",
"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.33",
"@blitzjs/config": "workspace:2.0.0-alpha.34",
"@testing-library/react": "13.0.0",
"@testing-library/react-hooks": "7.0.2",
"@types/cookie": "0.4.1",

View File

@@ -1,5 +1,12 @@
# @blitzjs/next
## 2.0.0-alpha.34
### Patch Changes
- Updated dependencies [dfd2408e]
- @blitzjs/rpc@2.0.0-alpha.34
## 2.0.0-alpha.33
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/next",
"version": "2.0.0-alpha.33",
"version": "2.0.0-alpha.34",
"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.33",
"@blitzjs/rpc": "2.0.0-alpha.34",
"@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.33",
"@blitzjs/config": "workspace:2.0.0-alpha.34",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "13.0.0",
@@ -43,7 +43,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.33",
"blitz": "2.0.0-alpha.34",
"cross-spawn": "7.0.3",
"find-up": "4.1.0",
"lodash.frompairs": "4.0.1",

View File

@@ -1,3 +1,4 @@
import type {NextConfig} from "next"
import {
GetServerSideProps,
GetServerSidePropsResult,
@@ -7,21 +8,20 @@ import {
NextApiResponse,
} from "next"
import type {
Ctx as BlitzCtx,
AddParameters,
AsyncFunc,
BlitzServerPlugin,
Ctx as BlitzCtx,
FirstParam,
Middleware,
MiddlewareResponse,
AsyncFunc,
FirstParam,
AddParameters,
} from "blitz"
import {handleRequestWithMiddleware, startWatcher, stopWatcher} from "blitz"
import type {NextConfig} from "next"
import {getQueryKey, getInfiniteQueryKey, installWebpackConfig} from "@blitzjs/rpc"
import {dehydrate} from "@blitzjs/rpc"
import {dehydrate, getQueryKey, getInfiniteQueryKey, loaderClient, loaderServer} from "@blitzjs/rpc"
import {DefaultOptions, QueryClient} from "react-query"
import {IncomingMessage, ServerResponse} from "http"
import {withSuperJsonProps} from "./superjson"
import {ResolverBasePath} from "@blitzjs/rpc/src/index-server"
export * from "./index-browser"
@@ -133,12 +133,59 @@ export const setupBlitzServer = ({plugins}: SetupBlitzOptions) => {
export interface BlitzConfig extends NextConfig {
blitz?: {
resolverBasePath?: ResolverBasePath
customServer?: {
hotReload?: boolean
}
}
}
interface WebpackRuleOptions {
resolverBasePath?: ResolverBasePath
}
interface WebpackRule {
test: RegExp
use: Array<{
loader: string
options: WebpackRuleOptions
}>
}
interface InstallWebpackConfigOptions {
webpackConfig: {
module: {
rules: WebpackRule[]
}
}
nextConfig: BlitzConfig
}
export function installWebpackConfig({webpackConfig, nextConfig}: InstallWebpackConfigOptions) {
const options: WebpackRuleOptions = {
resolverBasePath: nextConfig.blitz?.resolverBasePath,
}
webpackConfig.module.rules.push({
test: /\/\[\[\.\.\.blitz]]\.[jt]s$/,
use: [
{
loader: loaderServer,
options,
},
],
})
webpackConfig.module.rules.push({
test: /[\\/](queries|mutations)[\\/]/,
use: [
{
loader: loaderClient,
options,
},
],
})
}
export function withBlitz(nextConfig: BlitzConfig = {}) {
if (
process.env.NODE_ENV !== "production" &&
@@ -158,8 +205,8 @@ export function withBlitz(nextConfig: BlitzConfig = {}) {
}
const config = Object.assign({}, nextConfig, {
webpack: (config: any, options: any) => {
installWebpackConfig(config)
webpack: (config: InstallWebpackConfigOptions["webpackConfig"], options: any) => {
installWebpackConfig({webpackConfig: config, nextConfig})
if (typeof nextConfig.webpack === "function") {
return nextConfig.webpack(config, options)
}

View File

@@ -1,5 +1,13 @@
# @blitzjs/rpc
## 2.0.0-alpha.34
### Patch Changes
- dfd2408e: Add resolverBasePath to Blitz config to change the way rpc routes are generated
- @blitzjs/auth@2.0.0-alpha.34
- blitz@2.0.0-alpha.34
## 2.0.0-alpha.33
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/rpc",
"version": "2.0.0-alpha.33",
"version": "2.0.0-alpha.34",
"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.33",
"@blitzjs/auth": "2.0.0-alpha.34",
"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.33",
"@blitzjs/config": "workspace:2.0.0-alpha.34",
"@types/debug": "4.1.7",
"@types/react": "18.0.1",
"@types/react-dom": "17.0.14",
"blitz": "2.0.0-alpha.33",
"blitz": "2.0.0-alpha.34",
"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.33",
"blitz": "2.0.0-alpha.34",
"next": "*"
},
"publishConfig": {

View File

@@ -2,7 +2,7 @@ import {normalizePathTrailingSlash} from "next/dist/client/normalize-trailing-sl
import {addBasePath} from "next/dist/shared/lib/router/router"
import {deserialize, serialize} from "superjson"
import {SuperJSONResult} from "superjson/dist/types"
import {isServer, CSRFTokenMismatchError} from "blitz"
import {CSRFTokenMismatchError, isServer} from "blitz"
import {getQueryKeyFromUrlAndParams, queryClient} from "./react-query-utils"
import {
getAntiCSRFToken,
@@ -55,7 +55,7 @@ export function __internal_buildRpcClient({
resolverType,
routePath,
}: BuildRpcClientParams): RpcClient {
const fullRoutePath = normalizeApiRoute("/api/rpc/" + routePath)
const fullRoutePath = normalizeApiRoute("/api/rpc" + routePath)
const httpClient: RpcClientBase = async (params, opts = {}) => {
const debug = (await import("debug")).default("blitz:rpc")

View File

@@ -1,7 +1,8 @@
import {assert, Ctx, baseLogger, prettyMs, newLine} from "blitz"
import {assert, baseLogger, Ctx, newLine, prettyMs} from "blitz"
import {NextApiRequest, NextApiResponse} from "next"
import {deserialize, serialize as superjsonSerialize} from "superjson"
import chalk from "chalk"
import {resolve} from "path"
// TODO - optimize end user server bundles by not exporting all client stuff here
export * from "./index-browser"
@@ -24,6 +25,7 @@ function getGlobalObject<T extends Record<string, unknown>>(key: string, default
type Resolver = (...args: unknown[]) => Promise<unknown>
type ResolverFiles = Record<string, () => Promise<{default?: Resolver}>>
export type ResolverBasePath = "queries|mutations" | "root" | undefined
// We define `global.__internal_blitzRpcResolverFiles` to ensure we use the same global object.
// Needed for Next.js. I'm guessing that Next.js is including the `node_modules/` files in a seperate bundle than user files.
@@ -47,21 +49,9 @@ export function __internal_addBlitzRpcResolver(
return resolver
}
import {resolve} from "path"
const dir = __dirname + (() => "")() // trick to avoid `@vercel/ncc` to glob import
const loaderServer = resolve(dir, "./loader-server.cjs")
const loaderClient = resolve(dir, "./loader-client.cjs")
export function installWebpackConfig<T extends any[]>(config: {module?: {rules?: T}}) {
config.module!.rules!.push({
test: /\/\[\[\.\.\.blitz]]\.[jt]s$/,
use: [{loader: loaderServer}],
})
config.module!.rules!.push({
test: /[\\/](queries|mutations)[\\/]/,
use: [{loader: loaderClient}],
})
}
export const loaderServer = resolve(dir, "./loader-server.cjs")
export const loaderClient = resolve(dir, "./loader-client.cjs")
// ----------
// END LOADER

View File

@@ -3,20 +3,13 @@ import {
convertFilePathToResolverName,
convertFilePathToResolverType,
convertPageFilePathToRoutePath,
Loader,
LoaderOptions,
toPosixPath,
} from "./loader-utils"
import {assert} from "blitz"
import {posix} from "path"
// Subset of `import type { LoaderDefinitionFunction } from 'webpack'`
type Loader = {
_compiler?: {
name: string
context: string
}
resource: string
cacheable: (enabled: boolean) => void
}
export async function loader(this: Loader, input: string): Promise<string> {
const compiler = this._compiler!
@@ -25,8 +18,12 @@ export async function loader(this: Loader, input: string): Promise<string> {
const isSSR = compiler.name === "server"
if (!isSSR) {
const code = await transformBlitzRpcResolverClient(input, toPosixPath(id), toPosixPath(root))
return code
return await transformBlitzRpcResolverClient(
input,
toPosixPath(id),
toPosixPath(root),
this.query,
)
}
return input
@@ -34,13 +31,18 @@ export async function loader(this: Loader, input: string): Promise<string> {
module.exports = loader
export async function transformBlitzRpcResolverClient(_src: string, id: string, root: string) {
export async function transformBlitzRpcResolverClient(
_src: string,
id: string,
root: string,
options?: LoaderOptions,
) {
assertPosixPath(id)
assertPosixPath(root)
const resolverFilePath = "/" + posix.relative(root, id)
assertPosixPath(resolverFilePath)
const routePath = convertPageFilePathToRoutePath(resolverFilePath)
const routePath = convertPageFilePathToRoutePath(resolverFilePath, options?.resolverBasePath)
const resolverName = convertFilePathToResolverName(resolverFilePath)
const resolverType = convertFilePathToResolverType(resolverFilePath)

View File

@@ -1,23 +1,17 @@
import {posix, join, dirname} from "path"
import {dirname, join, posix} from "path"
import {promises} from "fs"
import {
assertPosixPath,
toPosixPath,
buildPageExtensionRegex,
getIsRpcFile,
topLevelFoldersThatMayContainResolvers,
convertPageFilePathToRoutePath,
getIsRpcFile,
Loader,
LoaderOptions,
topLevelFoldersThatMayContainResolvers,
toPosixPath,
} from "./loader-utils"
// Subset of `import type { LoaderDefinitionFunction } from 'webpack'`
type Loader = {
_compiler?: {
name: string
context: string
}
resource: string
cacheable: (enabled: boolean) => void
}
export async function loader(this: Loader, input: string): Promise<string> {
const compiler = this._compiler!
@@ -29,8 +23,13 @@ export async function loader(this: Loader, input: string): Promise<string> {
this.cacheable(false)
const resolvers = await collectResolvers(root, ["ts", "js"])
const code = await transformBlitzRpcServer(input, toPosixPath(id), toPosixPath(root), resolvers)
return code
return await transformBlitzRpcServer(
input,
toPosixPath(id),
toPosixPath(root),
resolvers,
this.query,
)
}
return input
@@ -43,6 +42,7 @@ export async function transformBlitzRpcServer(
id: string,
root: string,
resolvers: string[],
options?: LoaderOptions,
) {
assertPosixPath(id)
assertPosixPath(root)
@@ -55,7 +55,7 @@ export async function transformBlitzRpcServer(
for (let resolverFilePath of resolvers) {
const relativeResolverPath = posix.relative(dirname(id), join(root, resolverFilePath))
const routePath = convertPageFilePathToRoutePath(resolverFilePath)
const routePath = convertPageFilePathToRoutePath(resolverFilePath, options?.resolverBasePath)
code += `__internal_addBlitzRpcResolver('${routePath}', () => import('${relativeResolverPath}'));`
code += "\n"
}

View File

@@ -0,0 +1,24 @@
import {describe, expect, it} from "vitest"
import {convertPageFilePathToRoutePath} from "./loader-utils"
const FILE_PATH = "app/queries/getData.ts"
describe("convertPageFilePathToRoutePath", () => {
it("should return the full path when resolverBasePath is set to root", () => {
const res = convertPageFilePathToRoutePath(FILE_PATH, "root")
expect(res).toEqual("app/queries/getData")
})
it("should return the relative path when resolverBasePath is set to queries|mutations", () => {
const res = convertPageFilePathToRoutePath(FILE_PATH, "queries|mutations")
expect(res).toEqual("/getData")
})
it("should return the relative path when resolverBasePath is set to undefined", () => {
const res = convertPageFilePathToRoutePath(FILE_PATH, undefined)
expect(res).toEqual("/getData")
})
})

View File

@@ -1,5 +1,20 @@
import {assert} from "blitz"
import {win32, posix, sep} from "path"
import {posix, sep, win32} from "path"
import {ResolverBasePath} from "./index-server"
export interface LoaderOptions {
resolverBasePath?: ResolverBasePath
}
export interface Loader {
_compiler?: {
name: string
context: string
}
resource: string
cacheable: (enabled: boolean) => void
query: LoaderOptions
}
export function assertPosixPath(path: string) {
const errMsg = `Wrongly formatted path: ${path}`
@@ -34,7 +49,14 @@ export function buildPageExtensionRegex(pageExtensions: string[]) {
const fileExtensionRegex = /\.([a-z]+)$/
export function convertPageFilePathToRoutePath(filePath: string) {
export function convertPageFilePathToRoutePath(
filePath: string,
resolverBasePath: ResolverBasePath,
) {
if (resolverBasePath === "root") {
return filePath.replace(fileExtensionRegex, "")
}
return filePath
.replace(/^.*?[\\/]queries[\\/]/, "/")
.replace(/^.*?[\\/]mutations[\\/]/, "/")

View File

@@ -1,5 +1,5 @@
import {Ctx} from "blitz"
import {describe, it, expect} from "vitest"
import {describe, expect, it} from "vitest"
import {z} from "zod"
import {ParserType, resolver} from "./resolver"
@@ -44,10 +44,9 @@ const asyncResolver = resolver.pipe(
const resolverTest = async ({type}: {type?: ParserType}) => {
const resolver1 = type === "sync" ? syncResolver : asyncResolver
const result1 = await resolver1(
{email: "test@example.com"},
{session: {$authorize: () => undefined} as Ctx},
)
const result1 = await resolver1({email: "test@example.com"}, {
session: {$authorize: () => undefined},
} as Ctx)
expect(result1).toBe("test@example.com")
const resolver2 = resolver.pipe(
@@ -55,9 +54,8 @@ const resolverTest = async ({type}: {type?: ParserType}) => {
return input.email
},
)
const result2 = await resolver2(
{email: "test@example.com"},
{session: {$authorize: () => undefined} as Ctx},
)
const result2 = await resolver2({email: "test@example.com"}, {
session: {$authorize: () => undefined},
} as Ctx)
expect(result2).toBe("test@example.com")
}

View File

@@ -1,5 +1,11 @@
# blitz
## 2.0.0-alpha.34
### Patch Changes
- @blitzjs/generator@2.0.0-alpha.34
## 2.0.0-alpha.33
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "blitz",
"version": "2.0.0-alpha.33",
"version": "2.0.0-alpha.34",
"scripts": {
"build": "unbuild",
"dev": "watch unbuild src --wait=0.2",
@@ -23,7 +23,7 @@
"blitz": "bin/blitz"
},
"dependencies": {
"@blitzjs/generator": "2.0.0-alpha.33",
"@blitzjs/generator": "2.0.0-alpha.34",
"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.33",
"@blitzjs/config": "workspace:2.0.0-alpha.34",
"@types/cookie": "0.4.1",
"@types/cross-spawn": "6.0.2",
"@types/debug": "4.1.7",

View File

@@ -1,5 +1,12 @@
# @blitzjs/codemod
## 2.0.0-alpha.34
### Patch Changes
- @blitzjs/generator@2.0.0-alpha.34
- blitz@2.0.0-alpha.34
## 2.0.0-alpha.33
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/codemod",
"version": "2.0.0-alpha.33",
"version": "2.0.0-alpha.34",
"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.33",
"@blitzjs/generator": "2.0.0-alpha.34",
"arg": "5.0.1",
"blitz": "2.0.0-alpha.33",
"blitz": "2.0.0-alpha.34",
"chalk": "^4.1.0",
"cross-spawn": "7.0.3",
"debug": "4.3.3",

View File

@@ -1,5 +1,7 @@
# @blitzjs/config
## 2.0.0-alpha.34
## 2.0.0-alpha.33
## 2.0.0-alpha.32

View File

@@ -1,7 +1,7 @@
{
"name": "@blitzjs/config",
"private": true,
"version": "2.0.0-alpha.33",
"version": "2.0.0-alpha.34",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.9.1",

View File

@@ -1,5 +1,7 @@
# @blitzjs/generator
## 2.0.0-alpha.34
## 2.0.0-alpha.33
## 2.0.0-alpha.32

View File

@@ -1,6 +1,6 @@
{
"name": "@blitzjs/generator",
"version": "2.0.0-alpha.33",
"version": "2.0.0-alpha.34",
"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.33",
"@blitzjs/config": "2.0.0-alpha.34",
"@juanm04/cpx": "2.0.1",
"@types/babel__core": "7.1.19",
"@types/diff": "5.0.2",

View File

@@ -25,7 +25,7 @@
"@typescript-eslint/parser": "5.9.1"
},
"devDependencies": {
"@blitzjs/config": "2.0.0-alpha.33",
"@blitzjs/config": "2.0.0-alpha.34",
"@types/react": "18.0.1",
"@types/react-dom": "17.0.14",
"react": "18.0.0",

266
pnpm-lock.yaml generated
View File

@@ -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.33
blitz: workspace:2.0.0-alpha.34
eslint: 7.32.0
husky: 7.0.4
jest: 27.5.1
@@ -432,8 +432,8 @@ importers:
packages/blitz:
specifiers:
"@blitzjs/config": workspace:2.0.0-alpha.33
"@blitzjs/generator": 2.0.0-alpha.33
"@blitzjs/config": workspace:2.0.0-alpha.34
"@blitzjs/generator": 2.0.0-alpha.34
"@types/cookie": 0.4.1
"@types/cross-spawn": 6.0.2
"@types/debug": 4.1.7
@@ -539,7 +539,7 @@ importers:
packages/blitz-auth:
specifiers:
"@blitzjs/config": workspace:2.0.0-alpha.33
"@blitzjs/config": workspace:2.0.0-alpha.34
"@testing-library/react": 13.0.0
"@testing-library/react-hooks": 7.0.2
"@types/b64-lite": 1.3.0
@@ -553,7 +553,7 @@ importers:
"@types/secure-password": 3.1.1
b64-lite: 1.4.0
bad-behavior: 1.0.1
blitz: 2.0.0-alpha.33
blitz: 2.0.0-alpha.34
cookie: 0.4.1
cookie-session: 2.0.0
debug: 4.3.3
@@ -604,8 +604,8 @@ importers:
packages/blitz-next:
specifiers:
"@blitzjs/config": workspace:2.0.0-alpha.33
"@blitzjs/rpc": 2.0.0-alpha.33
"@blitzjs/config": workspace:2.0.0-alpha.34
"@blitzjs/rpc": 2.0.0-alpha.34
"@testing-library/dom": 8.13.0
"@testing-library/jest-dom": 5.16.3
"@testing-library/react": 13.0.0
@@ -617,7 +617,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.33
blitz: 2.0.0-alpha.34
cross-spawn: 7.0.3
debug: 4.3.3
find-up: 4.1.0
@@ -669,14 +669,14 @@ importers:
packages/blitz-rpc:
specifiers:
"@blitzjs/auth": 2.0.0-alpha.33
"@blitzjs/config": workspace:2.0.0-alpha.33
"@blitzjs/auth": 2.0.0-alpha.34
"@blitzjs/config": workspace:2.0.0-alpha.34
"@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.33
blitz: 2.0.0-alpha.34
chalk: ^4.1.0
debug: 4.3.3
next: 12.1.6-canary.17
@@ -718,12 +718,12 @@ importers:
"@babel/plugin-syntax-typescript": 7.17.12
"@babel/preset-env": 7.12.10
"@blitzjs/config": workspace:*
"@blitzjs/generator": 2.0.0-alpha.33
"@blitzjs/generator": 2.0.0-alpha.34
"@types/jscodeshift": 0.11.2
"@types/node": 17.0.16
arg: 5.0.1
ast-types: 0.14.2
blitz: 2.0.0-alpha.33
blitz: 2.0.0-alpha.34
chalk: ^4.1.0
cross-spawn: 7.0.3
debug: 4.3.3
@@ -778,7 +778,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.33
"@blitzjs/config": 2.0.0-alpha.34
"@juanm04/cpx": 2.0.1
"@mrleebo/prisma-ast": 0.2.6
"@types/babel__core": 7.1.19
@@ -869,7 +869,7 @@ importers:
packages/pkg-template:
specifiers:
"@blitzjs/config": 2.0.0-alpha.33
"@blitzjs/config": 2.0.0-alpha.34
"@types/react": 18.0.1
"@types/react-dom": 17.0.14
"@typescript-eslint/eslint-plugin": 5.9.1
@@ -940,7 +940,7 @@ packages:
"@babel/parser": 7.18.4
"@babel/template": 7.16.7
"@babel/traverse": 7.18.2
"@babel/types": 7.18.4
"@babel/types": 7.17.12
convert-source-map: 1.8.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -2293,7 +2293,7 @@ packages:
"@babel/helper-module-imports": 7.16.7
"@babel/helper-plugin-utils": 7.17.12
"@babel/plugin-syntax-jsx": 7.17.12_@babel+core@7.18.2
"@babel/types": 7.18.4
"@babel/types": 7.17.12
dev: true
/@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.12.10:
@@ -2589,7 +2589,7 @@ packages:
}
engines: {node: ">=6.9.0"}
dependencies:
core-js-pure: 3.22.8
core-js-pure: 3.22.7
regenerator-runtime: 0.13.9
/@babel/runtime/7.18.3:
@@ -3344,7 +3344,7 @@ packages:
}
dependencies:
"@babel/runtime": 7.18.3
"@types/node": 12.20.55
"@types/node": 12.20.52
find-up: 4.1.0
fs-extra: 8.1.0
dev: false
@@ -3980,7 +3980,7 @@ packages:
}
dependencies:
"@babel/parser": 7.18.4
"@babel/types": 7.18.4
"@babel/types": 7.17.12
"@types/babel__generator": 7.6.4
"@types/babel__template": 7.4.1
"@types/babel__traverse": 7.17.1
@@ -3991,7 +3991,7 @@ packages:
integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==,
}
dependencies:
"@babel/types": 7.18.4
"@babel/types": 7.17.12
/@types/babel__template/7.4.1:
resolution:
@@ -4000,7 +4000,7 @@ packages:
}
dependencies:
"@babel/parser": 7.18.4
"@babel/types": 7.18.4
"@babel/types": 7.17.12
/@types/babel__traverse/7.17.1:
resolution:
@@ -4008,7 +4008,7 @@ packages:
integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==,
}
dependencies:
"@babel/types": 7.18.4
"@babel/types": 7.17.12
/@types/body-parser/1.19.2:
resolution:
@@ -4260,10 +4260,10 @@ packages:
jest-matcher-utils: 27.5.1
pretty-format: 27.5.1
/@types/jest/28.1.1:
/@types/jest/27.5.1:
resolution:
{
integrity: sha512-C2p7yqleUKtCkVjlOur9BWVA4HgUQmEj/HWCt5WzZ5mLXrWnyIfl0wGuArc+kBXsy0ZZfLp+7dywB4HtSVYGVA==,
integrity: sha512-fUy7YRpT+rHXto1YlL+J9rs0uLGyiqVt3ZOTQR+4ROc47yNl8WLdVLgUloBRhOxP1PZvguHl44T3H0wAWxahYQ==,
}
dependencies:
jest-matcher-utils: 27.5.1
@@ -4400,10 +4400,10 @@ packages:
form-data: 3.0.1
dev: true
/@types/node/12.20.55:
/@types/node/12.20.52:
resolution:
{
integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==,
integrity: sha512-cfkwWw72849SNYp3Zx0IcIs25vABmFh73xicxhCkTcvtZQeIez15PpwQN8fY3RD7gv1Wrxlc9MEtfMORZDEsGw==,
}
dev: false
@@ -4486,10 +4486,10 @@ packages:
}
dev: true
/@types/prettier/2.6.3:
/@types/prettier/2.6.1:
resolution:
{
integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==,
integrity: sha512-XFjFHmaLVifrAKaZ+EKghFHtHSUonyw8P2Qmy2/+osBnrKbH9UYtlK10zg8/kCt47MFilll/DEDKy3DHfJ0URw==,
}
/@types/preview-email/2.0.1:
@@ -4652,7 +4652,7 @@ packages:
integrity: sha512-oKZe+Mf4ioWlMuzVBaXQ9WDnEm1+umLx0InILg+yvZVBBDmzV5KfZyLrCvadtWcx8+916jLmHafcmqqffl+iIw==,
}
dependencies:
"@types/jest": 28.1.1
"@types/jest": 27.5.1
dev: true
/@types/testing-library__react-hooks/4.0.0_zpnidt7m3osuk7shl3s4oenomq:
@@ -4774,16 +4774,16 @@ packages:
- supports-color
dev: false
/@typescript-eslint/experimental-utils/5.27.1_hrkuebk64jiu2ut2d2sm4oylnu:
/@typescript-eslint/experimental-utils/5.26.0_hrkuebk64jiu2ut2d2sm4oylnu:
resolution:
{
integrity: sha512-Vd8uewIixGP93sEnmTRIH6jHZYRQRkGPDPpapACMvitJKX8335VHNyqKTE+mZ+m3E2c5VznTZfSsSsS5IF7vUA==,
integrity: sha512-OgUGXC/teXD8PYOkn33RSwBJPVwL0I2ipm5OHr9g9cfAhVrPC2DxQiWqaq88MNO5mbr/ZWnav3EVBpuwDreS5Q==,
}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
"@typescript-eslint/utils": 5.27.1_hrkuebk64jiu2ut2d2sm4oylnu
"@typescript-eslint/utils": 5.26.0_hrkuebk64jiu2ut2d2sm4oylnu
eslint: 7.32.0
transitivePeerDependencies:
- supports-color
@@ -4831,10 +4831,10 @@ packages:
- typescript
dev: false
/@typescript-eslint/parser/5.27.1_hrkuebk64jiu2ut2d2sm4oylnu:
/@typescript-eslint/parser/5.26.0_hrkuebk64jiu2ut2d2sm4oylnu:
resolution:
{
integrity: sha512-7Va2ZOkHi5NP+AZwb5ReLgNF6nWLGTeUJfxdkVUAPPSaAdbWNnFZzLZ4EGGmmiCTg+AwlbE1KyUYTBglosSLHQ==,
integrity: sha512-n/IzU87ttzIdnAH5vQ4BBDnLPly7rC5VnjN3m0xBG82HK6rhRxnCb3w/GyWbNDghPd+NktJqB/wl6+YkzZ5T5Q==,
}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4844,9 +4844,9 @@ packages:
typescript:
optional: true
dependencies:
"@typescript-eslint/scope-manager": 5.27.1
"@typescript-eslint/types": 5.27.1
"@typescript-eslint/typescript-estree": 5.27.1_typescript@4.6.3
"@typescript-eslint/scope-manager": 5.26.0
"@typescript-eslint/types": 5.26.0
"@typescript-eslint/typescript-estree": 5.26.0_typescript@4.6.3
debug: 4.3.4
eslint: 7.32.0
typescript: 4.6.3
@@ -4899,15 +4899,15 @@ packages:
- supports-color
dev: false
/@typescript-eslint/scope-manager/5.27.1:
/@typescript-eslint/scope-manager/5.26.0:
resolution:
{
integrity: sha512-fQEOSa/QroWE6fAEg+bJxtRZJTH8NTskggybogHt4H9Da8zd4cJji76gA5SBlR0MgtwF7rebxTbDKB49YUCpAg==,
integrity: sha512-gVzTJUESuTwiju/7NiTb4c5oqod8xt5GhMbExKsCTp6adU3mya6AGJ4Pl9xC7x2DX9UYFsjImC0mA62BCY22Iw==,
}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
"@typescript-eslint/types": 5.27.1
"@typescript-eslint/visitor-keys": 5.27.1
"@typescript-eslint/types": 5.26.0
"@typescript-eslint/visitor-keys": 5.26.0
dev: true
/@typescript-eslint/scope-manager/5.9.1:
@@ -4963,10 +4963,10 @@ packages:
- supports-color
dev: false
/@typescript-eslint/types/5.27.1:
/@typescript-eslint/types/5.26.0:
resolution:
{
integrity: sha512-LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg==,
integrity: sha512-8794JZFE1RN4XaExLWLI2oSXsVImNkl79PzTOOWt9h0UHROwJedNOD2IJyfL0NbddFllcktGIO2aOu10avQQyA==,
}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
@@ -4978,10 +4978,10 @@ packages:
}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@typescript-eslint/typescript-estree/5.27.1_typescript@4.6.3:
/@typescript-eslint/typescript-estree/5.26.0_typescript@4.6.3:
resolution:
{
integrity: sha512-DnZvvq3TAJ5ke+hk0LklvxwYsnXpRdqUY5gaVS0D4raKtbznPz71UJGnPTHEFo0GDxqLOLdMkkmVZjSpET1hFw==,
integrity: sha512-EyGpw6eQDsfD6jIqmXP3rU5oHScZ51tL/cZgFbFBvWuCwrIptl+oueUZzSmLtxFuSOQ9vDcJIs+279gnJkfd1w==,
}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4990,8 +4990,8 @@ packages:
typescript:
optional: true
dependencies:
"@typescript-eslint/types": 5.27.1
"@typescript-eslint/visitor-keys": 5.27.1
"@typescript-eslint/types": 5.26.0
"@typescript-eslint/visitor-keys": 5.26.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -5025,19 +5025,19 @@ packages:
transitivePeerDependencies:
- supports-color
/@typescript-eslint/utils/5.27.1_hrkuebk64jiu2ut2d2sm4oylnu:
/@typescript-eslint/utils/5.26.0_hrkuebk64jiu2ut2d2sm4oylnu:
resolution:
{
integrity: sha512-mZ9WEn1ZLDaVrhRaYgzbkXBkTPghPFsup8zDbbsYTxC5OmqrFE7skkKS/sraVsLP3TcT3Ki5CSyEFBRkLH/H/w==,
integrity: sha512-PJFwcTq2Pt4AMOKfe3zQOdez6InIDOjUJJD3v3LyEtxHGVVRK3Vo7Dd923t/4M9hSH2q2CLvcTdxlLPjcIk3eg==,
}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
"@types/json-schema": 7.0.11
"@typescript-eslint/scope-manager": 5.27.1
"@typescript-eslint/types": 5.27.1
"@typescript-eslint/typescript-estree": 5.27.1_typescript@4.6.3
"@typescript-eslint/scope-manager": 5.26.0
"@typescript-eslint/types": 5.26.0
"@typescript-eslint/typescript-estree": 5.26.0_typescript@4.6.3
eslint: 7.32.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@7.32.0
@@ -5046,14 +5046,14 @@ packages:
- typescript
dev: true
/@typescript-eslint/visitor-keys/5.27.1:
/@typescript-eslint/visitor-keys/5.26.0:
resolution:
{
integrity: sha512-xYs6ffo01nhdJgPieyk7HAOpjhTsx7r/oB9LWEhwAXgwn33tkr+W8DI2ChboqhZlC4q3TC6geDYPoiX8ROqyOQ==,
integrity: sha512-wei+ffqHanYDOQgg/fS6Hcar6wAWv0CUPQ3TZzOWd2BLfgP539rb49bwua8WRAs7R6kOSLn82rfEu2ro6Llt8Q==,
}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
"@typescript-eslint/types": 5.27.1
"@typescript-eslint/types": 5.26.0
eslint-visitor-keys: 3.3.0
dev: true
@@ -5508,10 +5508,10 @@ packages:
}
dev: false
/async/3.2.4:
/async/3.2.3:
resolution:
{
integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==,
integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==,
}
dev: false
@@ -5643,7 +5643,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
"@babel/template": 7.16.7
"@babel/types": 7.18.4
"@babel/types": 7.17.12
"@types/babel__core": 7.1.19
"@types/babel__traverse": 7.17.1
@@ -5689,7 +5689,7 @@ packages:
}
engines: {node: ">= 10.0.0"}
dependencies:
"@babel/types": 7.18.4
"@babel/types": 7.17.12
dev: true
/babylon/6.18.0:
@@ -6540,7 +6540,7 @@ packages:
}
dependencies:
"@babel/parser": 7.18.4
"@babel/types": 7.18.4
"@babel/types": 7.17.12
dev: true
/content-disposition/0.5.4:
@@ -6632,10 +6632,10 @@ packages:
browserslist: 4.20.3
semver: 7.0.0
/core-js-pure/3.22.8:
/core-js-pure/3.22.7:
resolution:
{
integrity: sha512-bOxbZIy9S5n4OVH63XaLVXZ49QKicjowDx/UELyJ68vxfCRpYsbyh/WNZNfEfAk+ekA8vSjt+gCDpvh672bc3w==,
integrity: sha512-wTriFxiZI+C8msGeh7fJcbC/a0V8fdInN1oS2eK79DMBGs8iIJiXhtFJCiT3rBa8w6zroHWW3p8ArlujZ/Mz+w==,
}
requiresBuild: true
@@ -7456,7 +7456,7 @@ packages:
is-shared-array-buffer: 1.0.2
is-string: 1.0.7
is-weakref: 1.0.2
object-inspect: 1.12.2
object-inspect: 1.12.1
object-keys: 1.1.1
object.assign: 4.1.2
regexp.prototype.flags: 1.4.3
@@ -8325,11 +8325,11 @@ packages:
dependencies:
"@next/eslint-plugin-next": 12.1.6
"@rushstack/eslint-patch": 1.1.3
"@typescript-eslint/parser": 5.27.1_hrkuebk64jiu2ut2d2sm4oylnu
"@typescript-eslint/parser": 5.26.0_hrkuebk64jiu2ut2d2sm4oylnu
eslint: 7.32.0
eslint-import-resolver-node: 0.3.6
eslint-import-resolver-typescript: 2.7.1_hpmu7kn6tcn2vnxpfzvv33bxmy
eslint-plugin-import: 2.26.0_wpehoe7sv7ux6tdegk3fwlchdi
eslint-plugin-import: 2.26.0_y6whhoimfujgclng5bly5nyove
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
@@ -8393,7 +8393,7 @@ packages:
dependencies:
debug: 4.3.4
eslint: 7.32.0
eslint-plugin-import: 2.26.0_wpehoe7sv7ux6tdegk3fwlchdi
eslint-plugin-import: 2.26.0_y6whhoimfujgclng5bly5nyove
glob: 7.2.0
is-glob: 4.0.3
resolve: 1.22.0
@@ -8402,36 +8402,6 @@ packages:
- supports-color
dev: true
/eslint-module-utils/2.7.3_4wf6ctbofaywkfx7kzk32kp7ge:
resolution:
{
integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==,
}
engines: {node: ">=4"}
peerDependencies:
"@typescript-eslint/parser": "*"
eslint-import-resolver-node: "*"
eslint-import-resolver-typescript: "*"
eslint-import-resolver-webpack: "*"
peerDependenciesMeta:
"@typescript-eslint/parser":
optional: true
eslint-import-resolver-node:
optional: true
eslint-import-resolver-typescript:
optional: true
eslint-import-resolver-webpack:
optional: true
dependencies:
"@typescript-eslint/parser": 5.27.1_hrkuebk64jiu2ut2d2sm4oylnu
debug: 3.2.7
eslint-import-resolver-node: 0.3.6
eslint-import-resolver-typescript: 2.7.1_hpmu7kn6tcn2vnxpfzvv33bxmy
find-up: 2.1.0
transitivePeerDependencies:
- supports-color
dev: true
/eslint-module-utils/2.7.3_dbnyosdljuntx5ukba4qoruhni:
resolution:
{
@@ -8462,6 +8432,36 @@ packages:
- supports-color
dev: false
/eslint-module-utils/2.7.3_yxrttxwxgn5axzfjkhhzgts2eq:
resolution:
{
integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==,
}
engines: {node: ">=4"}
peerDependencies:
"@typescript-eslint/parser": "*"
eslint-import-resolver-node: "*"
eslint-import-resolver-typescript: "*"
eslint-import-resolver-webpack: "*"
peerDependenciesMeta:
"@typescript-eslint/parser":
optional: true
eslint-import-resolver-node:
optional: true
eslint-import-resolver-typescript:
optional: true
eslint-import-resolver-webpack:
optional: true
dependencies:
"@typescript-eslint/parser": 5.26.0_hrkuebk64jiu2ut2d2sm4oylnu
debug: 3.2.7
eslint-import-resolver-node: 0.3.6
eslint-import-resolver-typescript: 2.7.1_hpmu7kn6tcn2vnxpfzvv33bxmy
find-up: 2.1.0
transitivePeerDependencies:
- supports-color
dev: true
/eslint-plugin-import/2.26.0_oisyptfcq77gha3jnxd6iiraai:
resolution:
{
@@ -8495,7 +8495,7 @@ packages:
- supports-color
dev: false
/eslint-plugin-import/2.26.0_wpehoe7sv7ux6tdegk3fwlchdi:
/eslint-plugin-import/2.26.0_y6whhoimfujgclng5bly5nyove:
resolution:
{
integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==,
@@ -8508,14 +8508,14 @@ packages:
"@typescript-eslint/parser":
optional: true
dependencies:
"@typescript-eslint/parser": 5.27.1_hrkuebk64jiu2ut2d2sm4oylnu
"@typescript-eslint/parser": 5.26.0_hrkuebk64jiu2ut2d2sm4oylnu
array-includes: 3.1.5
array.prototype.flat: 1.3.0
debug: 2.6.9
doctrine: 2.1.0
eslint: 7.32.0
eslint-import-resolver-node: 0.3.6
eslint-module-utils: 2.7.3_4wf6ctbofaywkfx7kzk32kp7ge
eslint-module-utils: 2.7.3_yxrttxwxgn5axzfjkhhzgts2eq
has: 1.0.3
is-core-module: 2.8.1
is-glob: 4.0.3
@@ -8658,7 +8658,7 @@ packages:
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
dependencies:
"@typescript-eslint/experimental-utils": 5.27.1_hrkuebk64jiu2ut2d2sm4oylnu
"@typescript-eslint/experimental-utils": 5.26.0_hrkuebk64jiu2ut2d2sm4oylnu
eslint: 7.32.0
transitivePeerDependencies:
- supports-color
@@ -10781,7 +10781,7 @@ packages:
engines: {node: ">=10"}
hasBin: true
dependencies:
async: 3.2.4
async: 3.2.3
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -11214,11 +11214,11 @@ packages:
"@babel/generator": 7.18.2
"@babel/plugin-syntax-typescript": 7.17.12_@babel+core@7.18.2
"@babel/traverse": 7.18.2
"@babel/types": 7.18.4
"@babel/types": 7.17.12
"@jest/transform": 27.5.1
"@jest/types": 27.5.1
"@types/babel__traverse": 7.17.1
"@types/prettier": 2.6.3
"@types/prettier": 2.6.1
babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.2
chalk: 4.1.2
expect: 27.5.1
@@ -11341,10 +11341,10 @@ packages:
engines: {node: ">=10"}
dev: true
/jpeg-js/0.4.4:
/jpeg-js/0.4.3:
resolution:
{
integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==,
integrity: sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q==,
}
dev: true
@@ -11856,7 +11856,7 @@ packages:
listr2: 3.14.0
micromatch: 4.0.5
normalize-path: 3.0.0
object-inspect: 1.12.2
object-inspect: 1.12.1
string-argv: 0.3.1
supports-color: 9.2.2
yaml: 1.10.2
@@ -12130,10 +12130,10 @@ packages:
hasBin: true
dev: true
/macos-release/3.1.0:
/macos-release/3.0.1:
resolution:
{
integrity: sha512-/M/R0gCDgM+Cv1IuBG1XGdfTFnMEG6PZeT+KGWHO/OG+imqmaD9CH5vHBTycEM3+Kc4uG2Il+tFAuUWLqQOeUA==,
integrity: sha512-3l6OrhdDg2H2SigtuN3jBh+5dRJRWxNKuJTPBbGeNJTsmt/pj9PO25wYaNb05NuNmAsl435j4rDP6rgNXz7s7g==,
}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: false
@@ -12996,10 +12996,10 @@ packages:
kind-of: 3.2.2
dev: false
/object-inspect/1.12.2:
/object-inspect/1.12.1:
resolution:
{
integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==,
integrity: sha512-Y/jF6vnvEtOPGiKD1+q+X0CiUYRQtEHp89MLLUJ7TUivtH8Ugn2+3A7Rynqk7BRsAoqeOQWnFnjpDrKSxDgIGA==,
}
/object-keys/1.1.1:
@@ -13205,7 +13205,7 @@ packages:
}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
macos-release: 3.1.0
macos-release: 3.0.1
windows-release: 5.0.1
dev: false
@@ -13755,7 +13755,7 @@ packages:
debug: 4.3.4
extract-zip: 2.0.1
https-proxy-agent: 5.0.1
jpeg-js: 0.4.4
jpeg-js: 0.4.3
mime: 2.6.0
pngjs: 5.0.0
progress: 2.0.3
@@ -14598,10 +14598,7 @@ packages:
dev: false
/repeat-string/1.6.1:
resolution:
{
integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==,
}
resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=}
engines: {node: ">=0.10"}
dev: false
@@ -14614,10 +14611,7 @@ packages:
dev: false
/require-directory/2.1.1:
resolution:
{
integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==,
}
resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=}
engines: {node: ">=0.10.0"}
/require-from-string/2.0.2:
@@ -14665,10 +14659,7 @@ packages:
engines: {node: ">=8"}
/resolve-url/0.2.1:
resolution:
{
integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==,
}
resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=}
deprecated: https://github.com/lydell/resolve-url#deprecated
dev: false
@@ -14700,10 +14691,7 @@ packages:
path-parse: 1.0.7
/responselike/1.0.2:
resolution:
{
integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==,
}
resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=}
dependencies:
lowercase-keys: 1.0.1
dev: false
@@ -14735,10 +14723,7 @@ packages:
engines: {node: ">=0.12"}
/retry/0.12.0:
resolution:
{
integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==,
}
resolution: {integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=}
engines: {node: ">= 4"}
dev: true
@@ -14851,10 +14836,7 @@ packages:
}
/safe-regex/1.1.0:
resolution:
{
integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==,
}
resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=}
dependencies:
ret: 0.1.15
dev: false
@@ -15084,7 +15066,7 @@ packages:
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.1
object-inspect: 1.12.2
object-inspect: 1.12.1
/signal-exit/3.0.7:
resolution:
@@ -16658,10 +16640,10 @@ packages:
replace-ext: 1.0.1
dev: false
/vite/2.9.10:
/vite/2.9.9:
resolution:
{
integrity: sha512-TwZRuSMYjpTurLqXspct+HZE7ONiW9d+wSWgvADGxhDPPyoIcNywY+RX4ng+QpK30DCa1l/oZgi2PLZDibhzbQ==,
integrity: sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==,
}
engines: {node: ">=12.2.0"}
hasBin: true
@@ -16714,7 +16696,7 @@ packages:
local-pkg: 0.4.1
tinypool: 0.1.3
tinyspy: 0.3.2
vite: 2.9.10
vite: 2.9.9
transitivePeerDependencies:
- less
- sass
@@ -16998,7 +16980,7 @@ packages:
engines: {node: ">= 10.0.0"}
dependencies:
"@babel/parser": 7.18.4
"@babel/types": 7.18.4
"@babel/types": 7.17.12
assert-never: 1.2.1
babel-walk: 3.0.0-canary-5
dev: true