Skip to content

Commit

Permalink
Rename to once-per-template
Browse files Browse the repository at this point in the history
  • Loading branch information
tmeasday committed Aug 9, 2022
1 parent c020531 commit 977b08f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion code/package.json
Expand Up @@ -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",
Expand Down
@@ -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'] } };
Expand Down
File renamed without changes.

0 comments on commit 977b08f

Please sign in to comment.