Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 2x 2x 2x 2x 4x 4x 4x | import Generator from 'yeoman-generator';
import { Filenames } from '../lib/enums/filenames';
import rootPkg from '../lib/helpers/package';
module.exports = class extends Generator {
writing() {
const pkgJson = {
devDependencies: {
'@typescript-eslint/eslint-plugin': rootPkg.devDependencies['@typescript-eslint/eslint-plugin'],
'@typescript-eslint/parser': rootPkg.devDependencies['@typescript-eslint/parser'],
eslint: rootPkg.devDependencies.eslint,
'eslint-plugin-import': rootPkg.devDependencies['eslint-plugin-import'],
},
};
this.fs.extendJSON(this.destinationPath(Filenames.PACKAGE_JSON), pkgJson);
this.fs.copy(this.templatePath(Filenames.ESLINT_CONFIG), this.destinationPath(Filenames.ESLINT_CONFIG));
}
};
|