copy-webpack-plugin icon indicating copy to clipboard operation
copy-webpack-plugin copied to clipboard

[Feature] keeping original whole or partial stats

Open jskrzypek opened this issue 8 years ago • 11 comments

We have cordova hooks in our source folder (see the cordova hooks guide for more info: https://cordova.apache.org/docs/en/dev/guide/appdev/hooks/) that need to be copied into our destination folder and need to preserve the executable bit on their file mode (i.e. ls -l should print -rwxr-xr-x for these files).

Currently this doesn't happen, but it seems like it should be easy to do by passing a options object as a 3rd parameter to the to the fs.writeFileAsync() call in the writeFilePromises with the stat.mode from the fs.statAsync() call.

jskrzypek avatar Apr 19 '16 17:04 jskrzypek

I'm trying to implement this on my fork, but it doesn't seem to be working.

I'm happy to make the PR but I need a bit of guidance.

jskrzypek avatar Apr 19 '16 17:04 jskrzypek

The difficulty is in how we copy the files. By default, we add the files by adding them to compilation.assets and letting webpack take care of writing the files. The only time we write files with fs.writeFileAsync() is when a devServer is used (due to limitations of the server).

It's possible that this feature could piggyback on the additions needed for #15. That feature also requires fs.writeFileAsync for every file.

kevlened avatar Apr 28 '16 05:04 kevlened

@evilebottnawi This issue is a bug on linux and macOS, ie 2 out of 3 major operating systems. It would be nice if you recognized @michael-ciniawsky 's tags and this issue's importance. Node can't spawn()/exec()/etc a copied file while this bug exists.

davepuchyr avatar Nov 28 '17 14:11 davepuchyr

@davepuchyr it is require to do PR in webpack-sources, by default webpack can not works with permissions

alexander-akait avatar Nov 28 '17 14:11 alexander-akait

Thanks for enlightening me and for the plugin.

davepuchyr avatar Nov 28 '17 16:11 davepuchyr

Maybe something in the direction of https://github.com/webpack-contrib/copy-webpack-plugin/pull/119 would be sufficient enough/in the meantime

michael-ciniawsky avatar Nov 28 '17 21:11 michael-ciniawsky

To work around the issue, I've implemented this plugin https://github.com/GeKorm/webpack-permissions-plugin

It executes during the 'done' phase in the webpack lifecycle.

socialcode-rob1 avatar Dec 05 '17 13:12 socialcode-rob1

Please make this happen. Great plugin but a pain in the ass to set the permissions afterwards ...

marco-a avatar May 18 '19 00:05 marco-a

To work around the issue, I've implemented this plugin https://github.com/GeKorm/webpack-permissions-plugin

It executes during the 'done' phase in the webpack lifecycle.

@socialcode-rob1 How did you get the two to work in tandem? I've tried the webpack-permissions-plugin but it always seems to fire before the copy-webpack-plugin. I'm trying to get the webpack-permissions-plugin to fire after the copy-webpack-plugin has run such that the permissions are updated on the target files.

benze avatar Oct 01 '20 01:10 benze

Should this not be the default behavior of any copy functionality?

ianpogi5 avatar Feb 19 '21 08:02 ianpogi5

If anyone is still having this issue, like I was. I was able to create a very small plugin like this:

const CopyPlugin = require('copy-webpack-plugin');
const chmodr = require('chmodr')
const path = require("path");

class PermissionsPlugin {
  apply(compiler) {
    compiler.hooks.afterEmit.tap("PermissionsPlugin", () => {
      console.log("changing permissions", path.join(__dirname, './path/to/files'), __dirname)
      chmodr(path.join(__dirname, './path/to/files'), 0o755, err => {
        console.log("Error changing perms " + err)
      })
    })
  }
}

This will fire after all assets are copied over, and is working well for me. You also have to add it into your plugins like so:

module.exports = {
  /* ... */
  plugins: [
    new PermissionsPlugin(),
    new CopyPlugin({
      options: {},
      /* ... */
    })
  ]
};

MatthewLamperski avatar Jan 28 '23 04:01 MatthewLamperski