I was hoping that I could use this plugin to create copies of the generated bundles to other directories. It seems however that the copying starts while webpack is creating these bundles. As a result I end up with copies of the files with no content.
Is there a way to add an option so that the copying of the files happen after webpack has created the output files?
Ok, so after digging around I'm starting to believe that there is no easy way to do this with the current version of the plugin. In writeFileToAssets the file source gets attached to compilation.assets.
compilation.assets[relFileDest] = {
size: function() {
return stat.size;
},
source: function() {
return fs.readFileSync(absFileSrc);
}
};
The problem is, that the source may not yet be there since webpack hasn't written it to the file yet so the source will be empty. So the next thing to try would be, can we check if absFileSrc is in the assets and make it read that source? I'll post when I find out.
So here is a solution, I added a few lines to writeFileToAssets so that it can check if the file is in production then to just point to that asset.
Here is the whole function
function writeFileToAssets(opts) {
var compilation = opts.compilation;
var relFileDest = opts.relFileDest;
var absFileSrc = opts.absFileSrc;
var forceWrite = opts.forceWrite;
var lastGlobalUpdate = opts.lastGlobalUpdate;
if (compilation.assets[relFileDest] && !forceWrite) {
return Promise.resolve();
}
var currentAssets = _.keys(compilation.assets);
var inProduction = _.find(currentAssets, function(name) {
return _.endsWith(absFileSrc, name);
});
return fs.statAsync(absFileSrc)
.then(function(stat) {
if (compilation.assets[inProduction]) {
compilation.assets[relFileDest] = compilation.assets[inProduction];
} else if (stat.mtime.getTime() > lastGlobalUpdate) {
compilation.assets[relFileDest] = {
size: function() {
return stat.size;
},
source: function() {
return fs.readFileSync(absFileSrc);
}
};
}
});
}
Would you mind incorporating this change?
In case it helps anyone else, I was interested in the same functionality as @jmlopez-rod and I ended up using https://www.npmjs.com/package/webpack-shell-plugin to accomplish it.
@tobinibot thanks for the link, I'll be using that one for sure.
@tobinibot thanks, I too hit this exact problem, and am now using the shell plugin instead.
@tobinibot How did you manage to copy files using the webpack-shell-plugin? I tried cp path/from path/to which works when I run it in terminal, but gives an error during shell execution.
.../node_modules/webpack-shell-plugin/lib/index.js:168
throw error;
^
1
@Anima-t3d don't know if it's any use to you, but this is the script I use (obviously the paths are specific to my project):
In my webpack.config:
plugins: [
new WebpackShellPlugin({
onBuildEnd: 'node copy-to-examples.js'
})
],
And this is my copy-to-examples file:
var fs = require('fs-extra');
var source = './dist/phaser.js';
var dest = '../../phaser3-examples/public/js/phaser.js';
fs.copy(source, dest, function (err) {
if (err)
{
return console.error(err);
}
console.log('Copied to ' + dest);
});
@Anima-t3d I have a similar thing as @photonstorm but I use onBuildExit:
config.plugins.push(new WebpackShellPlugin({
onBuildExit: [
'echo "Transfering files ... "',
'cp -r dist/* path/to/other/dist/',
'cp -r src/* path/to/other/src/',
'echo "DONE ... "',
],
}));
cp: http://man7.org/linux/man-pages/man1/cp.1.html
EDIT:
Somehow the cp command changed on me and it does not like the * in the path. I think the webpack shell plugin is wrapping each argument in quotes and so the actual commands provided in the script are not the same as if you were to execute them from the command line. To fix this I did something similar to what photonstorm did, that is, I moved my commands to a bash file and then I called bash file from the shell plugin.
@jmlopez-rod due to copying to a relative path in the parent of where I run webpack I ended up using something more similar to what @photonstorm described:
var fs = require('fs-extra');
var read = require('fs-readdir-recursive');
var path = require('path');
// Setup the instructions on which folders to copy
var copyInstructions = [
// copy from one src sub folder to another
{
label: 'Copy external scripts',
source: './src/react/scripts/externals',
destination: './src/app/static/r/scripts'
},
// copy the aggregated src sub folder to dist
{
label: 'Copy static to dist',
source: './src/app/static/',
destination: 'dist/static'
}
];
// Copy all files
copyInstructions.map(function (instruction) {
const {label, source, destination} = instruction;
var files = read(source);
/*if (label) {
console.log(label);
}*/
files.forEach(file => {
var sourcePath = source + '/' + file;
var destinationPath = destination + '/' + file;
fs.copy(path.resolve(sourcePath), path.resolve(destinationPath), function (err) {
/*if (label) {
console.log(label);
}*/
if (err) {
return console.error(err);
}
console.log(`Copied ${file} to ${path.resolve(destinationPath)}`);
});
});
});
I did not manage to get the path right when using the cp command.
@kevlened Is there any chance of this being added?
I'd love to be able to copy a generated file that is only created after webpack finishes its build. Right now, I can't with your plugin.
@kevlened This feature would be great, currently my production build fails due to this plug-in looking in an empty 'dist' folder as the HtmlWebpackPlugin hasn't finished building the files. Having the ability to copy a generated file post build would be ideal.
I also needed a feature like this and created plugin that could copy, delete, and move files/directories when a build starts or when a build finishes. https://github.com/gregnb/filemanager-webpack-plugin if you're interested
The FileManagerPlugin replaced CleanWebpackPlugin and CopyWebpackPlugin for me! Go for it...
Out of scope this plugin, please use FileManagerPlugin or just run npm task after build
FileManagerPlugin is broken too.
@evilebottnawi thanks! you save my day!!!
@evilebottnawi thanks!
For me, filter files to change output work fine...
{...}
output: {
path: path.revolve(__dirname, `build/static`),
filename: (chunkData) => {
return chunkData.chunk.name.includes('sw') ? 'bundle-[name].js': 'assets/bundle-[name].js';
},
sourceMapFilename: `[name].map`
},
{...}
Hope help you for simple cases...
I also needed a feature like this and created plugin that could copy, delete, and move files/directories when a build starts or when a build finishes. https://github.com/gregnb/filemanager-webpack-plugin if you're interested
Thank you. This is the solution for me. For any one who is asking why we need this. I have a public folder hosting on Firebase Hosting. I have a Yarn workspace which bundles the file at its dist folder (dist folder with other static files). Then, I moved the folder to public.
I have run into this a couple of times and forget how I solved it each time then re-solve it like this: "build": "webpack && cp ./dist/<file> ./<target dir>"
Just use cp in npm scripts if your use-case is simple.
Most helpful comment
The
FileManagerPluginreplacedCleanWebpackPluginandCopyWebpackPluginfor me! Go for it...