ngw
Version:
Provides an opportunity to overload webpack config for angular-cli applications
12 lines (11 loc) • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var command = process.argv[2].toLowerCase();
function default_1(config, options) {
if (command === 'test') {
console.log('Test configuration is running');
}
console.log('To modify webpack build, you can use ngw.config.ts');
return config;
}
exports.default = default_1;