mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-08 07:50:24 -05:00
feat: add support for next 13 (#24396)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/// <reference path="../support/e2e.ts" />
|
||||
import type { ProjectFixtureDir } from '@tooling/system-tests/lib/fixtureDirs'
|
||||
|
||||
const WEBPACK_REACT: ProjectFixtureDir[] = ['next-11', 'next-12', 'next-11-webpack-4', 'next-12.1.6']
|
||||
const WEBPACK_REACT: ProjectFixtureDir[] = ['next-12', 'next-12.1.6', 'next-13']
|
||||
|
||||
// Add to this list to focus on a particular permutation
|
||||
const ONLY_PROJECTS: ProjectFixtureDir[] = []
|
||||
|
||||
@@ -50,11 +50,95 @@ function getNextJsPackages (devServerConfig: WebpackDevServerConfig) {
|
||||
return packages
|
||||
}
|
||||
|
||||
/**
|
||||
* Types for `getNextJsBaseWebpackConfig` based on version:
|
||||
* - v11.1.4
|
||||
[
|
||||
dir: string,
|
||||
options: {
|
||||
buildId: string
|
||||
config: NextConfigComplete
|
||||
dev?: boolean
|
||||
isServer?: boolean
|
||||
pagesDir: string
|
||||
target?: string
|
||||
reactProductionProfiling?: boolean
|
||||
entrypoints: WebpackEntrypoints
|
||||
rewrites: CustomRoutes['rewrites']
|
||||
isDevFallback?: boolean
|
||||
runWebpackSpan: Span
|
||||
}
|
||||
]
|
||||
|
||||
* - v12.0.0 = Same as v11.1.4
|
||||
|
||||
* - v12.1.6
|
||||
[
|
||||
dir: string,
|
||||
options: {
|
||||
buildId: string
|
||||
config: NextConfigComplete
|
||||
compilerType: 'client' | 'server' | 'edge-server'
|
||||
dev?: boolean
|
||||
entrypoints: webpack5.EntryObject
|
||||
hasReactRoot: boolean
|
||||
isDevFallback?: boolean
|
||||
pagesDir: string
|
||||
reactProductionProfiling?: boolean
|
||||
rewrites: CustomRoutes['rewrites']
|
||||
runWebpackSpan: Span
|
||||
target?: string
|
||||
}
|
||||
]
|
||||
|
||||
* - v13.0.0
|
||||
[
|
||||
dir: string,
|
||||
options: {
|
||||
buildId: string
|
||||
config: NextConfigComplete
|
||||
compilerType: CompilerNameValues
|
||||
dev?: boolean
|
||||
entrypoints: webpack.EntryObject
|
||||
hasReactRoot: boolean
|
||||
isDevFallback?: boolean
|
||||
pagesDir?: string
|
||||
reactProductionProfiling?: boolean
|
||||
rewrites: CustomRoutes['rewrites']
|
||||
runWebpackSpan: Span
|
||||
target?: string
|
||||
appDir?: string
|
||||
middlewareMatchers?: MiddlewareMatcher[]
|
||||
}
|
||||
]
|
||||
|
||||
* - v13.0.1
|
||||
[
|
||||
dir: string,
|
||||
options: {
|
||||
buildId: string
|
||||
config: NextConfigComplete
|
||||
compilerType: CompilerNameValues
|
||||
dev?: boolean
|
||||
entrypoints: webpack.EntryObject
|
||||
isDevFallback?: boolean
|
||||
pagesDir?: string
|
||||
reactProductionProfiling?: boolean
|
||||
rewrites: CustomRoutes['rewrites']
|
||||
runWebpackSpan: Span
|
||||
target?: string
|
||||
appDir?: string
|
||||
middlewareMatchers?: MiddlewareMatcher[]
|
||||
}
|
||||
]
|
||||
*/
|
||||
async function loadWebpackConfig (devServerConfig: WebpackDevServerConfig): Promise<Configuration> {
|
||||
const { loadConfig, getNextJsBaseWebpackConfig } = getNextJsPackages(devServerConfig)
|
||||
|
||||
const nextConfig = await loadConfig('development', devServerConfig.cypressConfig.projectRoot)
|
||||
const runWebpackSpan = getRunWebpackSpan(devServerConfig)
|
||||
const reactVersion = getReactVersion(devServerConfig.cypressConfig.projectRoot)
|
||||
|
||||
const webpackConfig = await getNextJsBaseWebpackConfig(
|
||||
devServerConfig.cypressConfig.projectRoot,
|
||||
{
|
||||
@@ -69,6 +153,8 @@ async function loadWebpackConfig (devServerConfig: WebpackDevServerConfig): Prom
|
||||
isServer: false,
|
||||
// Client webpack config for Next.js > 12.1.5
|
||||
compilerType: 'client',
|
||||
// Required for Next.js > 13
|
||||
hasReactRoot: reactVersion === 18,
|
||||
},
|
||||
)
|
||||
|
||||
@@ -300,3 +386,14 @@ function changeNextCachePath (webpackConfig: Configuration) {
|
||||
debug('Changing Next cache path from %s to %s', cacheDirectory, webpackConfig.cache.cacheDirectory)
|
||||
}
|
||||
}
|
||||
|
||||
function getReactVersion (projectRoot: string): number | undefined {
|
||||
try {
|
||||
const reactPackageJsonPath = require.resolve('react/package.json', { paths: [projectRoot] })
|
||||
const { version } = require(reactPackageJsonPath)
|
||||
|
||||
return Number(version.split('.')[0])
|
||||
} catch (e) {
|
||||
debug('Failed to source react with error: ', e)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -74,46 +74,6 @@ describe('nextHandler', function () {
|
||||
expect(sourceWebpackModulesResult.webpack.majorVersion).eq(5)
|
||||
})
|
||||
|
||||
it('sources from a next-11 project', async () => {
|
||||
const projectRoot = await scaffoldMigrationProject('next-11')
|
||||
|
||||
process.chdir(projectRoot)
|
||||
|
||||
const { frameworkConfig: webpackConfig, sourceWebpackModulesResult } = await nextHandler({
|
||||
framework: 'next',
|
||||
cypressConfig: { projectRoot } as Cypress.PluginConfigOptions,
|
||||
} as WebpackDevServerConfig)
|
||||
|
||||
expectWatchOverrides(webpackConfig)
|
||||
expectPagesDir(webpackConfig, projectRoot)
|
||||
expectWebpackSpan(webpackConfig)
|
||||
expectGlobalStyleOverrides(webpackConfig)
|
||||
expectCacheOverrides(webpackConfig, projectRoot)
|
||||
|
||||
expect(sourceWebpackModulesResult.webpack.importPath).to.include('next')
|
||||
expect(sourceWebpackModulesResult.webpack.majorVersion).eq(5)
|
||||
})
|
||||
|
||||
it('sources from a next-11-webpack-4 project', async () => {
|
||||
const projectRoot = await scaffoldMigrationProject('next-11-webpack-4')
|
||||
|
||||
process.chdir(projectRoot)
|
||||
|
||||
const { frameworkConfig: webpackConfig, sourceWebpackModulesResult } = await nextHandler({
|
||||
framework: 'next',
|
||||
cypressConfig: { projectRoot, cypressBinaryRoot: __dirname } as Cypress.PluginConfigOptions,
|
||||
} as WebpackDevServerConfig)
|
||||
|
||||
expectWatchOverrides(webpackConfig)
|
||||
expectPagesDir(webpackConfig, projectRoot)
|
||||
expectWebpackSpan(webpackConfig)
|
||||
expectGlobalStyleOverrides(webpackConfig)
|
||||
expectCacheOverrides(webpackConfig, projectRoot)
|
||||
|
||||
expect(sourceWebpackModulesResult.webpack.importPath).to.include('next')
|
||||
expect(sourceWebpackModulesResult.webpack.majorVersion).eq(4)
|
||||
})
|
||||
|
||||
it('throws if nodeVersion is set to bundled', async () => {
|
||||
const projectRoot = await scaffoldMigrationProject('next-12')
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@ export const WIZARD_DEPENDENCY_NEXT = {
|
||||
package: 'next',
|
||||
installer: 'next',
|
||||
description: 'The React Framework for Production',
|
||||
minVersion: '^=10.0.0 || ^=11.0.0 || ^=12.0.0',
|
||||
minVersion: '^=10.0.0 || ^=11.0.0 || ^=12.0.0 || ^=13.0.0',
|
||||
} as const
|
||||
|
||||
export const WIZARD_DEPENDENCY_ANGULAR_CLI = {
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
module.exports = {
|
||||
webpack5: false,
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"name": "my-app",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "^11.0.0",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2"
|
||||
},
|
||||
"projectFixtureDirectory": "next"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
reactStrictMode: true,
|
||||
swcMinify: true,
|
||||
}
|
||||
|
||||
module.exports = nextConfig
|
||||
+4
-4
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "my-app",
|
||||
"name": "next-latest",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
@@ -9,9 +9,9 @@
|
||||
"lint": "next lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "^11.0.0",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2"
|
||||
"next": "13.0.0",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0"
|
||||
},
|
||||
"projectFixtureDirectory": "next"
|
||||
}
|
||||
@@ -0,0 +1,191 @@
|
||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||
# yarn lockfile v1
|
||||
|
||||
|
||||
"@next/env@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/env/-/env-13.0.0.tgz#38527956680693c90b4522ab4ab9a2fbe3a17f67"
|
||||
integrity sha512-65v9BVuah2Mplohm4+efsKEnoEuhmlGm8B2w6vD1geeEP2wXtlSJCvR/cCRJ3fD8wzCQBV41VcMBQeYET6MRkg==
|
||||
|
||||
"@next/swc-android-arm-eabi@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.0.tgz#15cd89d19d3c00d123fdfe367bab38c362f6c515"
|
||||
integrity sha512-+DUQkYF93gxFjWY+CYWE1QDX6gTgnUiWf+W4UqZjM1Jcef8U97fS6xYh+i+8rH4MM0AXHm7OSakvfOMzmjU6VA==
|
||||
|
||||
"@next/swc-android-arm64@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.0.0.tgz#9410365bb07097268d4773a46b02cfe6b3fe3ab7"
|
||||
integrity sha512-RW9Uy3bMSc0zVGCa11klFuwfP/jdcdkhdruqnrJ7v+7XHm6OFKkSRzX6ee7yGR1rdDZvTnP4GZSRSpzjLv/N0g==
|
||||
|
||||
"@next/swc-darwin-arm64@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.0.tgz#caf262fb5cb8bb335f6f344fd67a44dc8bf6a084"
|
||||
integrity sha512-APA26nps1j4qyhOIzkclW/OmgotVHj1jBxebSpMCPw2rXfiNvKNY9FA0TcuwPmUCNqaTnm703h6oW4dvp73A4Q==
|
||||
|
||||
"@next/swc-darwin-x64@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.0.tgz#6b214753410e1d8512a1491045acea1e188df7d6"
|
||||
integrity sha512-qsUhUdoFuRJiaJ7LnvTQ6GZv1QnMDcRXCIjxaN0FNVXwrjkq++U7KjBUaxXkRzLV4C7u0NHLNOp0iZwNNE7ypw==
|
||||
|
||||
"@next/swc-freebsd-x64@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.0.tgz#eeb176bdb585f48882bdac1d04271b918ca87590"
|
||||
integrity sha512-sCdyCbboS7CwdnevKH9J6hkJI76LUw1jVWt4eV7kISuLiPba3JmehZSWm80oa4ADChRVAwzhLAo2zJaYRrInbg==
|
||||
|
||||
"@next/swc-linux-arm-gnueabihf@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.0.tgz#2c2a9622c93f87a8baca94e068f674da4cae6018"
|
||||
integrity sha512-/X/VxfFA41C9jrEv+sUsPLQ5vbDPVIgG0CJrzKvrcc+b+4zIgPgtfsaWq9ockjHFQi3ycvlZK4TALOXO8ovQ6Q==
|
||||
|
||||
"@next/swc-linux-arm64-gnu@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.0.tgz#69505827e2928fb18034150fd4d754d54c4a1c4b"
|
||||
integrity sha512-x6Oxr1GIi0ZtNiT6jbw+JVcbEi3UQgF7mMmkrgfL4mfchOwXtWSHKTSSPnwoJWJfXYa0Vy1n8NElWNTGAqoWFw==
|
||||
|
||||
"@next/swc-linux-arm64-musl@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.0.tgz#487a88f2583a046e882328fe0665b37eca4fd0f6"
|
||||
integrity sha512-SnMH9ngI+ipGh3kqQ8+mDtWunirwmhQnQeZkEq9e/9Xsgjf04OetqrqRHKM1HmJtG2qMUJbyXFJ0F81TPuT+3g==
|
||||
|
||||
"@next/swc-linux-x64-gnu@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.0.tgz#29e89c7e4fd2e2b16ad059076f6261998aee53df"
|
||||
integrity sha512-VSQwTX9EmdbotArtA1J67X8964oQfe0xHb32x4tu+JqTR+wOHyG6wGzPMdXH2oKAp6rdd7BzqxUXXf0J+ypHlw==
|
||||
|
||||
"@next/swc-linux-x64-musl@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.0.tgz#2f63aae922d2b2829aec21bf8f9adda8b6c16365"
|
||||
integrity sha512-xBCP0nnpO0q4tsytXkvIwWFINtbFRyVY5gxa1zB0vlFtqYR9lNhrOwH3CBrks3kkeaePOXd611+8sjdUtrLnXA==
|
||||
|
||||
"@next/swc-win32-arm64-msvc@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.0.tgz#4117bad96c2a6775f70294fba45c63951a8a21ac"
|
||||
integrity sha512-NutwDafqhGxqPj/eiUixJq9ImS/0sgx6gqlD7jRndCvQ2Q8AvDdu1+xKcGWGNnhcDsNM/n1avf1e62OG1GaqJg==
|
||||
|
||||
"@next/swc-win32-ia32-msvc@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.0.tgz#5914eb86f9ea92a00d76cb094dd9734b3bf2012c"
|
||||
integrity sha512-zNaxaO+Kl/xNz02E9QlcVz0pT4MjkXGDLb25qxtAzyJL15aU0+VjjbIZAYWctG59dvggNIUNDWgoBeVTKB9xLg==
|
||||
|
||||
"@next/swc-win32-x64-msvc@13.0.0":
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.0.tgz#c54a5a739dee04b20338d305226a2acdf701f67f"
|
||||
integrity sha512-FFOGGWwTCRMu9W7MF496Urefxtuo2lttxF1vwS+1rIRsKvuLrWhVaVTj3T8sf2EBL6gtJbmh4TYlizS+obnGKA==
|
||||
|
||||
"@swc/helpers@0.4.11":
|
||||
version "0.4.11"
|
||||
resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.11.tgz#db23a376761b3d31c26502122f349a21b592c8de"
|
||||
integrity sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==
|
||||
dependencies:
|
||||
tslib "^2.4.0"
|
||||
|
||||
caniuse-lite@^1.0.30001406:
|
||||
version "1.0.30001425"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001425.tgz#52917791a453eb3265143d2cd08d80629e82c735"
|
||||
integrity sha512-/pzFv0OmNG6W0ym80P3NtapU0QEiDS3VuYAZMGoLLqiC7f6FJFe1MjpQDREGApeenD9wloeytmVDj+JLXPC6qw==
|
||||
|
||||
client-only@0.0.1:
|
||||
version "0.0.1"
|
||||
resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1"
|
||||
integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==
|
||||
|
||||
"js-tokens@^3.0.0 || ^4.0.0":
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
||||
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
||||
|
||||
loose-envify@^1.1.0:
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
||||
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
|
||||
dependencies:
|
||||
js-tokens "^3.0.0 || ^4.0.0"
|
||||
|
||||
nanoid@^3.3.4:
|
||||
version "3.3.4"
|
||||
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
|
||||
integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
|
||||
|
||||
next@13.0.0:
|
||||
version "13.0.0"
|
||||
resolved "https://registry.yarnpkg.com/next/-/next-13.0.0.tgz#6f07064a4f374562cf58677bef4dd06326ca648b"
|
||||
integrity sha512-puH1WGM6rGeFOoFdXXYfUxN9Sgi4LMytCV5HkQJvVUOhHfC1DoVqOfvzaEteyp6P04IW+gbtK2Q9pInVSrltPA==
|
||||
dependencies:
|
||||
"@next/env" "13.0.0"
|
||||
"@swc/helpers" "0.4.11"
|
||||
caniuse-lite "^1.0.30001406"
|
||||
postcss "8.4.14"
|
||||
styled-jsx "5.1.0"
|
||||
use-sync-external-store "1.2.0"
|
||||
optionalDependencies:
|
||||
"@next/swc-android-arm-eabi" "13.0.0"
|
||||
"@next/swc-android-arm64" "13.0.0"
|
||||
"@next/swc-darwin-arm64" "13.0.0"
|
||||
"@next/swc-darwin-x64" "13.0.0"
|
||||
"@next/swc-freebsd-x64" "13.0.0"
|
||||
"@next/swc-linux-arm-gnueabihf" "13.0.0"
|
||||
"@next/swc-linux-arm64-gnu" "13.0.0"
|
||||
"@next/swc-linux-arm64-musl" "13.0.0"
|
||||
"@next/swc-linux-x64-gnu" "13.0.0"
|
||||
"@next/swc-linux-x64-musl" "13.0.0"
|
||||
"@next/swc-win32-arm64-msvc" "13.0.0"
|
||||
"@next/swc-win32-ia32-msvc" "13.0.0"
|
||||
"@next/swc-win32-x64-msvc" "13.0.0"
|
||||
|
||||
picocolors@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
|
||||
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
|
||||
|
||||
postcss@8.4.14:
|
||||
version "8.4.14"
|
||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf"
|
||||
integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==
|
||||
dependencies:
|
||||
nanoid "^3.3.4"
|
||||
picocolors "^1.0.0"
|
||||
source-map-js "^1.0.2"
|
||||
|
||||
react-dom@18.2.0:
|
||||
version "18.2.0"
|
||||
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
|
||||
integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
|
||||
dependencies:
|
||||
loose-envify "^1.1.0"
|
||||
scheduler "^0.23.0"
|
||||
|
||||
react@18.2.0:
|
||||
version "18.2.0"
|
||||
resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5"
|
||||
integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==
|
||||
dependencies:
|
||||
loose-envify "^1.1.0"
|
||||
|
||||
scheduler@^0.23.0:
|
||||
version "0.23.0"
|
||||
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe"
|
||||
integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==
|
||||
dependencies:
|
||||
loose-envify "^1.1.0"
|
||||
|
||||
source-map-js@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
|
||||
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
|
||||
|
||||
styled-jsx@5.1.0:
|
||||
version "5.1.0"
|
||||
resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.0.tgz#4a5622ab9714bd3fcfaeec292aa555871f057563"
|
||||
integrity sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==
|
||||
dependencies:
|
||||
client-only "0.0.1"
|
||||
|
||||
tslib@^2.4.0:
|
||||
version "2.4.0"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
|
||||
integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
|
||||
|
||||
use-sync-external-store@1.2.0:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a"
|
||||
integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==
|
||||
Reference in New Issue
Block a user