forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInitAction.ts
More file actions
49 lines (39 loc) · 1.84 KB
/
InitAction.ts
File metadata and controls
49 lines (39 loc) · 1.84 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import * as colors from 'colors';
import * as path from 'path';
import { FileSystem } from '@rushstack/node-core-library';
import { CommandLineAction } from '@rushstack/ts-command-line';
import { ApiExtractorCommandLine } from './ApiExtractorCommandLine';
import { ExtractorConfig } from '../api/ExtractorConfig';
export class InitAction extends CommandLineAction {
public constructor(parser: ApiExtractorCommandLine) {
super({
actionName: 'init',
summary: `Create an ${ExtractorConfig.FILENAME} config file`,
documentation: `Use this command when setting up API Extractor for a new project. It writes an`
+ ` ${ExtractorConfig.FILENAME} config file template with code comments that describe all the settings.`
+ ` The file will be written in the current directory.`
});
}
protected onDefineParameters(): void { // override
// No parameters yet
}
protected onExecute(): Promise<void> { // override
const inputFilePath: string = path.resolve(__dirname, '../schemas/api-extractor-template.json');
const outputFilePath: string = path.resolve(ExtractorConfig.FILENAME);
if (FileSystem.exists(outputFilePath)) {
console.log(colors.red('The output file already exists:'));
console.log('\n ' + outputFilePath + '\n');
throw new Error('Unable to write output file');
}
console.log(colors.green('Writing file: ') + outputFilePath);
FileSystem.copyFile({
sourcePath: inputFilePath,
destinationPath: outputFilePath
});
console.log('\nThe recommended location for this file is in the project\'s "config" subfolder,\n'
+ 'or else in the top-level folder with package.json.');
return Promise.resolve();
}
}