We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dd4009 commit 7653f3aCopy full SHA for 7653f3a
packages/nx-plugin/src/index.ts
@@ -1,8 +1,9 @@
1
+import { PLUGIN_NAME } from './plugin/constants.js';
2
import { createNodes, createNodesV2 } from './plugin/index.js';
3
4
// default export for nx.json#plugins
5
const plugin = {
- name: '@code-pushup/nx-plugin',
6
+ name: PLUGIN_NAME,
7
createNodesV2,
8
// Keep for backwards compatibility with Nx < 21
9
createNodes,
packages/nx-plugin/src/plugin/constants.ts
@@ -1 +1,2 @@
export const CP_TARGET_NAME = 'code-pushup';
+export const PLUGIN_NAME = '@code-pushup/nx-plugin';
0 commit comments