nx/packages/schematics/migrations/20180328-add-nx-lint.ts
2018-04-05 21:09:13 -04:00

14 lines
336 B
TypeScript

import { updateJsonFile } from '../src/utils/fileutils';
export default {
description: 'Run lint checks ensuring the integrity of the workspace',
run: () => {
updateJsonFile('package.json', json => {
json.scripts = {
...json.scripts,
lint: './node_modules/.bin/nx lint && ng lint'
};
});
}
};