利用Webpack進行自動安裝和保存依賴:npm-install-webpack-plugin

npm-install-webpack-plugin

通過利用Webpack進行自動安裝和保存依賴來加速開發。

npm-install-webpack-plugin mp4

Seamlessly works with:

  • Javascript (e.g. require, import)
  • CSS (e.g. @import "~bootstrap")
  • Webpack loaders (e.g. babel-loader, file-loader, etc.)

travis build Coverage Status version downloads MIT License


Why?

It sucks to Ctrl-C your build script & server just to install a dependency you didn't know you needed until now.

Instead, use require or import how you normally would and npm install will happen automatically install & save missing dependencies while you work!

Installation

$ npm install --save-dev npm-install-webpack-plugin

Usage

In your webpack.config.js:

plugins: [
  new NpmInstallPlugin(),
],

If you have an .npmrc file in your project, those arguments will be used:

save=true
save-exact=true

Alternatively, you can provide your own arguments to npm install:

plugins: [
  new NpmInstallPlugin({
    ...
    cacheMin: 999999  // --cache-min=999999 (prefer NPM cached version)
    registry: "..."   // --registry="..."
    save: true,       // --save
    saveDev: true,    // --save-dev
    saveExact: true,  // --save-exact
    ...
  }),
],

License

MIT License 2016 ? Eric Clemmons

項目地址: https://github.com/ericclemmons/npm-install-webpack-plugin

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!