Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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.

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc