-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadt.config.ts
More file actions
29 lines (28 loc) · 1.07 KB
/
adt.config.ts
File metadata and controls
29 lines (28 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* ADT Configuration for abapify root
*
* This config enables CLI command plugins when running from abapify root.
*
* NOTE: Contract generation config is now in packages/adt-contracts/adt.config.ts
* Run: npx nx run adt-contracts:generate-contracts
*/
import type { AdtConfig } from '@abapify/adt-config';
export default {
// CLI command plugins to load dynamically
commands: [
// Code generation plugin
'@abapify/adt-codegen/commands/codegen',
// ATC (ABAP Test Cockpit) plugin - code quality checks
'@abapify/adt-atc/commands/atc',
// AUnit (ABAP Unit Tests) plugin - with JUnit XML for GitLab CI
'@abapify/adt-aunit/commands/aunit',
// Export plugin - deploy local files to SAP (aliased as 'deploy')
'@abapify/adt-export/commands/export',
// Roundtrip test - deploy, reimport, compare
'@abapify/adt-export/commands/roundtrip',
// Activate - bulk activate inactive objects
'@abapify/adt-export/commands/activate',
// Diff - compare local abapGit files against SAP remote
'@abapify/adt-diff/commands/diff',
],
} as AdtConfig;