libs/nx/src/executors/journal/compat/schema.ts
Journal
Properties |
outputFile | |
Type |
string
|
Description
|
file to store the journal
|
project | |
Type |
string
|
Description
|
Which project to operate on
|
export interface JournalExecutorSchema {
/**
* Which project to operate on
* @examples ["libs/itmp/building-blocks"]
*/
project: string;
/**
* file to store the journal
* @examples ["libs/itmp/building-blocks/journal.json"]
*/
outputFile: string;
}