UNPKG

generator-confit

Version:

Yeoman generator for creating the development process, tools and a sample project for current-generation web applications

18 lines (14 loc) 304 B
'use strict'; module.exports = function() { /** * @this generator */ function write() { this.log('Writing Webpack serverDev options'); let toolResources = this.buildTool.getResources().serverDev; this.writeBuildToolConfig(toolResources); } return { write: write, }; };