如何使用webpack包含node_modules?

时间:2018-10-25 10:36:58

标签: angularjs webpack webpack-4

在我的angularJs 1.3应用程序中,我以前使用过Bower和Grunt,并且运行良好。我正在index.html中添加文件,如以下屏幕截图所示。但是现在我已经使用NPM和WEbPack 4.21.0安装了所有软件包,以捆绑并运行该应用程序。但是现在,如果我从Index.html文件中删除了程序包链接,我的应用程序将停止工作。但是我不希望Index.html中的所有这些链接,仅想从这些文件生成捆绑文件。请指导我如何实现这一目标?目前,它仅添加了angular.js文件,并在vendor.js中添加了其他文件。

Index.html

rerwer

Package.json

ssss

webpack.config.js

enter image description here

更新的问题:

现在我正在使用以下webpack.config.js,但它会创建 bootstrap_and_some_plugin.css.js 。它必须创建CSS文件,但不知道为什么要创建js文件?

module.exports = {
  context: __dirname + '/app/scripts',
  resolve: {
    modules: ['bower_components', 'node_modules'],
    alias: {
      bower_components: __dirname + '/app/bower_components',
      assets: __dirname + '/app/assets'
    },
    extensions: ['.js', '.jsx', '.css']
  },
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          { loader: "style-loader" },
          { loader: "css-loader" }
        ]
      },
      {
        test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
        use: [{
          loader: 'file-loader',
          options: {
            name: '[name].[ext]',
            outputPath: 'fonts/'
          }
        }]
      }
    ]
  },
  entry: {
    app: './main-app.js',
    'bootstrap_and_some_plugin.css': [
      'bower_components/font-awesome/css/font-awesome.css',
      'bower_components/seiyria-bootstrap-slider/dist/css/bootstrap-slider.min.css',
      'bower_components/angular-ui-tree/dist/angular-ui-tree.min.css',
    ]
  },
  output: {
    filename: '[name].js',
    path: __dirname + '/app/scripts',
    //chunkFilename: '[id].[chunkhash].js',
  },
  devServer: {
    contentBase: './app',
    host: 'localhost',
    port: '9000',
    inline: true,
    compress: true,
    proxy: {
      '/api/**': {
        //target: 'http://10.189.1.159:8080',
        target: 'http://localhost:9100',
        secure: false,
        changeOrigin: true,
        cookieDomainRewrite: true
      }
    },
    open: true
  },
  plugins: [

  ]
};

1 个答案:

答案 0 :(得分:1)

在文件webpack.config.js中,将此属性添加到resolve属性中:

resolve: {
    alias: {
        bower_components: __dirname + '/app/bower_components'
    }
}

在文件main-app.js中,如果要使用某个js文件,则应这样调用:

require('bower_components/jquery/dist/jquery.js');
require('bower_components/angular/angular.js');
require('bower_components/bootstrap/dist/js/bootstrap.js');
// ...

您需要指定文件webpack.config.js的路径。在我的示例中,所有路径如下:

your_project
    webpack.config.js
    app
        bower_components
            jquery
                ...
            angular
                ...
            bootstrap
                ...

__dirname指的是正在使用它的js文件的当前路径。如果在__dirname文件中使用webpack.config.js,它将呈现your_project。或在jquery.js中使用它,它将呈现your_project\app\bowser_components\jquery\dist

然后,构建到bundle.js文件并删除Index.cshtml文件中的所有路径。

希望这会有所帮助!

更新:如果您的js目标文件太大。您可以将模块分为多个部分,例如:

entry: {
    'bootstrap_and_some_plugin.css': [
        './app/bower_components/bootstrap/dist/css/bootstrap.min.css',
        './app/bower_components/some-plugin/css/some-plugin.css'
    ],
    'jquery_and_angular.js': [
        './app/bower_components/jquery/dist/jquery.js', 
        './app/bower_components/angular/angular.js'
    ],
    'site.js': ['./js/site']
}

然后,在您的Index.cshtml中:

<link href="bootstrap_and_some_plugin.css" rel="stylesheet" />

<!-- body content -->

<script src="jquery_and_angular.js"></script>
<script src="site.js"></script>

更新2:您需要安装2个软件包babili-webpack-pluginextract-text-webpack-plugin

在文件webpack.config.js中:

// define these variables before "module.exports"
var BabiliPlugin = require('babili-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');

module.exports = {...};

然后,设置插件选项:

plugins: [
    new BabiliPlugin({}, { test: /\.js$/, comments: false }),
    new ExtractTextPlugin('[name]'),
    ... and other options
]

和输出选项:

output: {
    filename: '[name]',
    ... and other options
}