🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More →
Socket
Book a DemoSign in
Socket

@feizheng/archiver-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@feizheng/archiver-webpack-plugin

Archiver webpack plugin.

latest
npmnpm
Version
1.0.0
Version published
Weekly downloads
4
-20%
Maintainers
1
Weekly downloads
 
Created
Source

archiver-webpack-plugin

Archiver webpack plugin.

installation

npm install -D @feizheng/archiver-webpack-plugin

usage

import ArchiverWebpackPlugin from 'archiver-webpack-plugin';

// plugins:
plugiins:[
  new ArchiverWebapckPlugin({
    transform: function (inValue) {
      return 'app/' + inValue;
    },
    output: function (inPath, inExt) {
      return inPath.replace('dist', 'dist/app') + inExt;
    }
  })
]

options

NameTypeDefaultDescription
formatStringtararchiver format options
formatOptionsObject{ gzip: true, zlib: { level: 9 } }archiver options
transformFunctionfunction (inValue) { return inValue}replace to transform package path.
outputFunctionfunction (inPath, inExt) { return inPath + inExt }replace to output package path.
extString.tar.gzPackage extention

resources

  • https://github.com/Seldszar/archiver-webpack-plugin
  • https://archiverjs.com/docs/#quick-start

FAQs

Package last updated on 23 Nov 2019

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