In the old system.js cli version, there was an option to copy files from `node_modules` to the `dist/vendor` directory using the `vendorNpmFiles` array. ``` module.exports = function(defaults) { return new Angular2App(defaults, { vendorNpmFiles: [ '...', 'font-awesome/fonts/**/*', '...' ] }); }; ``` Where has this functionality gone in the new webpack based cli? EDIT: Has this been solved by #1633?