mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
move metafiles to code, so nx can cache it properly
This commit is contained in:
parent
f02e568742
commit
173de14b10
@ -155,7 +155,7 @@ jobs:
|
||||
yarn local-registry --publish
|
||||
- report-workflow-on-failure
|
||||
- store_artifacts:
|
||||
path: bench/esbuild-metafiles
|
||||
path: code/bench/esbuild-metafiles
|
||||
- save_cache:
|
||||
name: Save Yarn cache
|
||||
key: build-yarn-2-cache-v4--{{ checksum "code/yarn.lock" }}--{{ checksum "scripts/yarn.lock" }}
|
||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -12,6 +12,7 @@ test-results
|
||||
/repros
|
||||
/sandbox
|
||||
/bench
|
||||
/code/bench
|
||||
.verdaccio-cache
|
||||
.next
|
||||
/.npmrc
|
||||
|
@ -5,9 +5,9 @@ import type { Meta } from '@storybook/react';
|
||||
// @ts-expect-error - TS doesn't know about import.meta.glob from Vite
|
||||
const allMetafiles = import.meta.glob(
|
||||
[
|
||||
'../../bench/esbuild-metafiles/**/*.json',
|
||||
'../bench/esbuild-metafiles/**/*.json',
|
||||
// the core metafile is too big to be loaded automatically in the iframe
|
||||
'!../../bench/esbuild-metafiles/core/core.json',
|
||||
'!../bench/esbuild-metafiles/core/core.json',
|
||||
],
|
||||
{
|
||||
// eagerly loading is not ideal because it imports all metafiles upfront,
|
||||
@ -17,7 +17,7 @@ const allMetafiles = import.meta.glob(
|
||||
}
|
||||
);
|
||||
|
||||
const METAFILES_DIR = '../../bench/esbuild-metafiles/';
|
||||
const METAFILES_DIR = '../bench/esbuild-metafiles/';
|
||||
const PACKAGES_WITHOUT_ORG = ['storybook', 'sb', 'create-storybook'];
|
||||
|
||||
// allows the metafile path to be used in the URL hash
|
||||
|
@ -309,7 +309,7 @@ async function run() {
|
||||
});
|
||||
} else {
|
||||
// repo root/bench/esbuild-metafiles/core
|
||||
const metafilesDir = join(__dirname, '..', '..', '..', 'bench', 'esbuild-metafiles', 'core');
|
||||
const metafilesDir = join(__dirname, '..', '..', 'bench', 'esbuild-metafiles', 'core');
|
||||
if (existsSync(metafilesDir)) {
|
||||
await rm(metafilesDir, { recursive: true });
|
||||
}
|
||||
|
@ -52,7 +52,7 @@
|
||||
"{workspaceRoot}/../scripts/prepare/{bundle,addon-bundle,esm-bundle}.ts"
|
||||
],
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["{projectRoot}/dist", "{workspaceRoot}/../bench/esbuild-metafiles/{projectName}"],
|
||||
"outputs": ["{projectRoot}/dist", "{workspaceRoot}/bench/esbuild-metafiles/{projectName}"],
|
||||
"cache": true
|
||||
},
|
||||
"test": {
|
||||
|
@ -70,6 +70,7 @@ const run = async ({ cwd, flags }: { cwd: string; flags: string[] }) => {
|
||||
__dirname,
|
||||
'..',
|
||||
'..',
|
||||
'code',
|
||||
'bench',
|
||||
'esbuild-metafiles',
|
||||
name.replace('@storybook/', '')
|
||||
|
@ -59,6 +59,7 @@ const run = async ({ cwd, flags }: { cwd: string; flags: string[] }) => {
|
||||
__dirname,
|
||||
'..',
|
||||
'..',
|
||||
'code',
|
||||
'bench',
|
||||
'esbuild-metafiles',
|
||||
name.replace('@storybook', '')
|
||||
|
Loading…
x
Reference in New Issue
Block a user