将文件从node_modules复制到dist目录

时间:2019-03-29 15:31:30

标签: vue.js webpack html-webpack-plugin

我正在尝试使用node_modules将库从dist复制到html-webpack-plugin文件夹,库名是wsrpc-python

这是我的webpack配置,我设置了file-loader,但无济于事。

'use strict'
const path = require('path')
const utils = require('./utils')
const config = require('../config')
const { VueLoaderPlugin } = require('vue-loader')
const vueLoaderConfig = require('./vue-loader.conf')

function resolve(dir) {
  return path.join(__dirname, '..', dir)
}

const createLintingRule = () => ({
  test: /\.(js|vue)$/,
  loader: 'eslint-loader',
  enforce: 'pre',
  include: [resolve('src'), resolve('test')],
  options: {
    formatter: require('eslint-friendly-formatter'),
    emitWarning: !config.dev.showEslintErrorsInOverlay
  }
})

module.exports = {
  context: path.resolve(__dirname, '../'),
  entry: {
    app: './src/main.js',
  },
  output: {
    path: config.build.assetsRoot,
    filename: '[name].js',
    publicPath:
      process.env.NODE_ENV === 'production'
        ? config.build.assetsPublicPath
        : config.dev.assetsPublicPath
  },
  externals: {
    "wsrpc-python": "WSRPC",
  },
  resolve: {
    extensions: ['.js', '.vue', '.json'],
    alias: {
      '@': resolve('src')
    }
  },
  module: {
    rules: [
      ...(config.dev.useEslint ? [createLintingRule()] : []),
      {
        test: /\.vue$/,
        loader: 'vue-loader',
        options: vueLoaderConfig
      },
      {
        test: /\.js$/,
        loader: 'babel-loader?cacheDirectory',
        include: [
          resolve('src'),
          resolve('test'),
          resolve('node_modules/webpack-dev-server/client')
        ]
      },
      {
        test: /\.svg$/,
        loader: 'svg-sprite-loader',
        include: [resolve('src/icons')],
        options: {
          symbolId: 'icon-[name]'
        }
      },
      {
        test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
        loader: 'url-loader',
        exclude: [resolve('src/icons')],
        options: {
          limit: 10000,
          name: utils.assetsPath('img/[name].[hash:7].[ext]')
        }
      },
      {
        test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('media/[name].[hash:7].[ext]')
        }
      },
      {
        test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000,
          name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
        }
      },
      {
        test: /wsrpc-python\/js\//,
        loader: 'file-loader'
      },
    ]
  },
  plugins: [new VueLoaderPlugin()],
  node: {
    // prevent webpack from injecting useless setImmediate polyfill because Vue
    // source contains it (although only uses it if it's native).
    setImmediate: false,
    // prevent webpack from injecting mocks to Node native modules
    // that does not make sense for the client
    dgram: 'empty',
    fs: 'empty',
    net: 'empty',
    tls: 'empty',
    child_process: 'empty'
  }
}

4 个答案:

答案 0 :(得分:1)

CopyWebpackPlugin也不适合我。

我只是使用自定义的嵌入式插件,例如:https://gist.github.com/Venryx/c473c60ea0f10a2620f2d9d00c06e6c7

答案 1 :(得分:1)

默认情况下,CopyWebpackPlugin 将在当前目录中查找文件,以提供我们需要使用的正确目录require.resolve('your-package-name/dir/file-name')

  plugins: [
    new CopyWebpackPlugin({
      patterns: [{
        from: require.resolve('my-package-name/dist/index.css'),
        to: '[name].min.css'
      }]
    })
  ]

答案 2 :(得分:0)

改为使用CopyWebpackPlugin

webpack.config.js:

const CopyPlugin = require('copy-webpack-plugin')

module.exports = {
  plugins: [
    ...
    new CopyPlugin([
      'node_modules/wsrpc-python/*.js',
    ]),
  ],
}

GitHub demo

答案 3 :(得分:0)

在@ tony19的答案上,您需要在to中设置fromcopy-webpack-plugin路径。

它应该像这样:

new CopyWebpackPlugin([
    { from: 'node_modules/wsrpc-python/*.js', to: '/dist' },
]),
相关问题