diff --git a/.circleci/config.yml b/.circleci/config.yml index 654800d70f2d..73966b8d0383 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -484,7 +484,8 @@ jobs: command: | mkdir sandbox cd code - yarn multiplex-templates --cadence ci --parallel --script "yarn sandbox --no-link --no-start --no-publish" + yarn once-per-template --cadence ci --parallel \ + --script "yarn sandbox --no-link --no-start --no-publish" - persist_to_workspace: root: . paths: diff --git a/code/package.json b/code/package.json index ac5915c5daee..2f03200814c8 100644 --- a/code/package.json +++ b/code/package.json @@ -73,8 +73,8 @@ "lint:other": "prettier --write '**/*.{css,html,json,md,yml}'", "lint:package": "sort-package-json", "local-registry": "ts-node --project=../scripts/tsconfig.json ../scripts/run-registry.ts --port 6000", - "multiplex-templates": "ts-node ../scripts/multiplex-templates.ts", "next-repro": "ts-node ../scripts/next-repro-generators/generate.ts", + "once-per-template": "ts-node ../scripts/once-per-template.ts", "publish-repros": "ts-node ../scripts/next-repro-generators/publish.ts", "publish:debug": "npm run publish:latest -- --npm-tag=debug --no-push", "publish:latest": "lerna publish --exact --concurrency 1 --force-publish", diff --git a/scripts/multiplex-templates.test.ts b/scripts/once-per-template.test.ts similarity index 92% rename from scripts/multiplex-templates.test.ts rename to scripts/once-per-template.test.ts index ba54b3016508..e280e5015c7b 100644 --- a/scripts/multiplex-templates.test.ts +++ b/scripts/once-per-template.test.ts @@ -1,7 +1,7 @@ import { describe, it, expect, jest } from '@jest/globals'; -import { filterTemplates, parseCommand } from './multiplex-templates'; -import type { Templates } from './multiplex-templates'; +import { filterTemplates, parseCommand } from './once-per-template'; +import type { Templates } from './once-per-template'; jest.mock('../code/lib/cli/src/repro-templates', () => () => ({})); const mockOptions = { foo: { type: 'string', values: ['bar', 'baz'] } }; diff --git a/scripts/multiplex-templates.ts b/scripts/once-per-template.ts similarity index 100% rename from scripts/multiplex-templates.ts rename to scripts/once-per-template.ts