Skip to content

Commit b38238d

Browse files
committed
chore(config): use accessors for config properties
Fix #823
1 parent a26180d commit b38238d

File tree

3 files changed

+388
-149
lines changed

3 files changed

+388
-149
lines changed

tools/config/project.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@ import { join } from 'path';
33
import { SeedConfig } from './seed.config';
44
import { InjectableDependency } from './seed.config.interfaces';
55

6+
import {Overwrite} from '../utils/seed/overwrite_config';
7+
68
/**
79
* This class extends the basic seed configuration, allowing for project specific overrides. A few examples can be found
810
* below.
911
*/
1012
export class ProjectConfig extends SeedConfig {
1113

1214
PROJECT_TASKS_DIR = join(process.cwd(), this.TOOLS_DIR, 'tasks', 'project');
15+
@Overwrite() NPM_DEPENDENCIES: InjectableDependency[];
1316

1417
constructor() {
1518
super();

0 commit comments

Comments
 (0)