Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

webpack-permissions-plugin

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-permissions-plugin

A webpack plugin to set permissions for your output files and folders

latest
Source
npmnpm
Version
1.0.10
Version published
Weekly downloads
27K
-18.41%
Maintainers
1
Weekly downloads
 
Created
Source

Webpack Permissions Plugin

A webpack plugin to manage the permissions of output files and directories
Tested with Webpack 2, 3 and 4

Install

  • Yarn: yarn add -D webpack-permissions-plugin
  • Npm: npm i -D webpack-permissions-plugin

Usage

buildFolders (String: path) The directories to chmod recursively
buildFiles (String: path) The specific files to chmod

Files under buildFolders get file-specific permissions.

Simple: Directories 644, Files 755
const PermissionsOutputPlugin = require('webpack-permissions-plugin');

plugins.push(
  new PermissionsOutputPlugin({
    buildFolders: [
      path.resolve(__dirname, 'resources/'),
      path.resolve(__dirname, 'dist/')
    ],
    buildFiles: [
      path.resolve(__dirname, 'someFile.js'),
      path.resolve(__dirname, 'dist/app.js')
    ]
    // dist/app.js is redundant, it already got 755 by being included in the buildFolder above
  })
);
Advanced: Per-path modes

Mode: an octal string or octal integer (eg. 755 or 0o755)

const PermissionsOutputPlugin = require('webpack-permissions-plugin');

plugins.push(
  new PermissionsOutputPlugin({
    buildFolders: [
      {
        path: path.resolve(__dirname, 'resources/'), // Everything under resources/ gets these modes
        fileMode: '755',
        dirMode: '644'
      },
      {
        path: path.resolve(__dirname, 'dist/'), // Everything under dist/ gets these modes
        fileMode: '755',
        dirMode: '644'
      }
    ],
    buildFiles: [
      {
        path: path.resolve(__dirname, 'someFile.js'),
        fileMode: '755'
      },
      {
        path: path.resolve(__dirname, 'dist/app.js'),
        fileMode: '777' // Overrides previous dist/ mode
      }
    ]
  })
);

Keywords

webpack

FAQs

Package last updated on 08 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts