Merge pull request #20092 from storybookjs/valentin/add-next-12-sandbox

Add Next 12 sandbox
This commit is contained in:
Valentin Palkovic 2022-12-14 13:24:12 +01:00 committed by GitHub
commit 06910f28c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 13 deletions

View File

@ -611,25 +611,25 @@ workflows:
jobs:
- build
- create-sandboxes:
parallelism: 25
parallelism: 26
requires:
- build
# - smoke-test-sandboxes: # disabled for now
# requires:
# - create-sandboxes
- build-sandboxes:
parallelism: 25
parallelism: 26
requires:
- create-sandboxes
- test-runner-sandboxes:
parallelism: 25
parallelism: 26
requires:
- build-sandboxes
- chromatic-sandboxes:
parallelism: 25
parallelism: 26
requires:
- build-sandboxes
- e2e-sandboxes:
parallelism: 25
parallelism: 26
requires:
- build-sandboxes

View File

@ -3,7 +3,6 @@ import { DefinePlugin } from 'webpack';
import { PHASE_DEVELOPMENT_SERVER } from 'next/constants';
import findUp from 'find-up';
import { pathExists } from 'fs-extra';
import dedent from 'ts-dedent';
import type { Configuration as WebpackConfig } from 'webpack';
import type { NextConfig } from 'next';
import { pathToFileURL } from 'node:url';
@ -45,13 +44,7 @@ export const resolveNextConfig = async ({
const nextConfigFile = nextConfigPath || (await findNextConfigFile(configDir));
if (!nextConfigFile || (await pathExists(nextConfigFile)) === false) {
throw new Error(
dedent`
Could not find or resolve your Next config file. Please provide the next config file path as a framework option.
More info: https://github.com/storybookjs/storybook/blob/next/code/frameworks/nextjs/README.md#options
`
);
return {};
}
const nextConfigExport = await import(pathToFileURL(nextConfigFile).href);

View File

@ -353,6 +353,7 @@ export const daily: TemplateKey[] = [
'lit-vite/default-js',
'svelte-kit/skeleton-js',
'svelte-vite/default-js',
'nextjs/12-js',
'nextjs/default-js',
'preact-webpack5/default-js',
];