@nrwl/schematics
Version:
28 lines (27 loc) • 1.44 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const workspace_1 = require("@nrwl/workspace");
exports.default = {
description: 'Add tags to all app and libs',
run: () => __awaiter(this, void 0, void 0, function* () {
workspace_1.updateJsonFile('.angular-cli.json', json => {
json.apps = json.apps.map(app => (Object.assign({}, app, { tags: [] })));
});
workspace_1.updateJsonFile('tslint.json', json => {
if (json.rules['nx-enforce-module-boundaries']) {
json.rules['nx-enforce-module-boundaries'][1].depConstraints = [
{ sourceTag: '*', onlyDependOnLibsWithTags: ['*'] }
];
json.rules['nx-enforce-module-boundaries'][1].lazyLoad = undefined;
}
});
})
};