move metafiles to code, so nx can cache it properly

This commit is contained in:
Jeppe Reinhold 2024-09-25 15:29:37 +02:00
parent f02e568742
commit 173de14b10
7 changed files with 9 additions and 6 deletions

View File

@ -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
View File

@ -12,6 +12,7 @@ test-results
/repros
/sandbox
/bench
/code/bench
.verdaccio-cache
.next
/.npmrc

View File

@ -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

View File

@ -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 });
}

View File

@ -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": {

View File

@ -70,6 +70,7 @@ const run = async ({ cwd, flags }: { cwd: string; flags: string[] }) => {
__dirname,
'..',
'..',
'code',
'bench',
'esbuild-metafiles',
name.replace('@storybook/', '')

View File

@ -59,6 +59,7 @@ const run = async ({ cwd, flags }: { cwd: string; flags: string[] }) => {
__dirname,
'..',
'..',
'code',
'bench',
'esbuild-metafiles',
name.replace('@storybook', '')