-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.ts
More file actions
21 lines (18 loc) · 902 Bytes
/
index.ts
File metadata and controls
21 lines (18 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { PLUGIN_NAME } from './plugin/constants.js';
import { createNodes, createNodesV2 } from './plugin/index.js';
// default export for nx.json#plugins
const plugin = {
name: PLUGIN_NAME,
createNodesV2,
// Keep for backwards compatibility with Nx < 21
createNodes,
};
export default plugin;
export type { CliCommandExecutorOptions } from './executors/cli/schema.js';
export { generateCodePushupConfig } from './generators/configuration/code-pushup-config.js';
export { configurationGenerator } from './generators/configuration/generator.js';
export type { ConfigurationGeneratorOptions } from './generators/configuration/schema.js';
export { initGenerator, initSchematic } from './generators/init/generator.js';
export { type InitGeneratorSchema } from './generators/init/schema.js';
export * from './internal/versions.js';
export { createNodes, createNodesV2 } from './plugin/index.js';