-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: structure verdaccio environment (#805)
- Loading branch information
Showing
24 changed files
with
690 additions
and
327 deletions.
There are no files selected for viewing
76 changes: 0 additions & 76 deletions
76
e2e/nx-plugin-e2e/tests/__snapshots__/create-nodes-plugin.e2e.test.ts.snap
This file was deleted.
Oops, something went wrong.
43 changes: 43 additions & 0 deletions
43
e2e/nx-plugin-e2e/tests/__snapshots__/plugin-create-nodes.e2e.test.ts.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html | ||
|
||
exports[`nx-plugin > should NOT add config targets dynamically if the project is configured 1`] = ` | ||
{ | ||
"code-pushup": { | ||
"configurations": {}, | ||
"executor": "@code-pushup/nx-plugin:autorun", | ||
"options": {}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`nx-plugin > should add configuration target dynamically 1`] = ` | ||
{ | ||
"code-pushup--configuration": { | ||
"configurations": {}, | ||
"executor": "nx:run-commands", | ||
"options": { | ||
"command": "nx g @code-pushup/nx-plugin:configuration --skipTarget --targetName="code-pushup" --project="my-lib"", | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`nx-plugin > should add executor target dynamically if the project is configured 1`] = ` | ||
{ | ||
"code-pushup": { | ||
"configurations": {}, | ||
"executor": "@code-pushup/nx-plugin:autorun", | ||
"options": {}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`nx-plugin > should execute dynamic configuration target 1`] = ` | ||
"import type { CoreConfig } from '@code-pushup/models'; | ||
// see: https://github.com/code-pushup/cli/blob/main/packages/models/docs/models-reference.md#coreconfig | ||
export default { | ||
plugins: [], | ||
} satisfies CoreConfig; | ||
" | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.