我有一个用TypeScript编写的AngularJS 1.x项目,我正在使用Webpack。我现在正尝试使用我为其中一项服务编写的示例测试来设置karma-typescript模块。
我关注了来自here的示例karma配置文件,现在就这样做:
module.exports = function (config) {
config.set({
basePath: '../',
frameworks: ['jasmine', 'karma-typescript'],
files: [
//Add library includes here...
'app/**/*.ts'
],
exclude: [
],
preprocessors: {
'app/**/*.ts': ['karma-typescript']
},
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['PhantomJS'],
singleRun: false,
concurrency: Infinity
})
}
当我运行我的测试任务时,出现错误,指出无法找到角度。我知道为什么,因为在我的业力配置文件中,我还没有添加我的应用程序所需的任何库。有没有一种方法可以让我在我的webpack配置文件设置构建的供应商包文件中加载业力?:
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const webpack = require('webpack');
const copy = require('copy-webpack-plugin');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
entry: {
main: './app/app.module.ts',
vendor: [
'jquery',
'angular',
'angular-animate',
'angular-aria',
'angular-cookies',
'angular-material',
'angular-messages',
'angular-mocks',
'angular-resource',
'angular-sanitize',
'angular-ui-bootstrap',
'angular-ui-router',
'angular-local-storage',
'bootstrap',
'less',
'lodash',
'moment',
'ui-select',
'leaflet',
'iso-currency',
'angular-leaflet-directive'
],
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].bundle.js',
},
module: {
rules: [
{
test: require.resolve('jquery'),
use: [{
loader: 'expose-loader',
options: '$'
}]
}, {
test: /\.less$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'less-loader']
})
}, {
test: require.resolve('moment'),
use: [{
loader: 'expose-loader',
options: 'moment'
}]
},
{
test: /\.(png|woff|woff2|eot|ttf|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader'
},
{
enforce: 'pre',
test: /\.tsx?$/,
use: 'source-map-loader'
},
{
test: /\.ts?$/,
exclude: /node_modules/,
use: 'ts-loader'
}
]
},
resolve: {
extensions: ['.ts', '.js']
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: Infinity
}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: 'jquery',
'window.jQuery': 'jquery'
}),
new ExtractTextPlugin('./app.css'),
new CleanWebpackPlugin(['dist']),
new copy([
{ from: 'app' },
{ from: 'index.html' },
{ from: 'app/assets/fonts', to: 'assets/fonts' },
{ from: 'app/assets/iln18Support', to: 'assets/iln18Support' },
{ from: 'app/assets/images', to: 'assets/images' },
{ from: 'app/partials', to: 'partials' }
])
]
};
那么我有没有办法告诉业力包括webpack输出的vendor.bundle.js文件?
我正在努力寻找好的例子\文档,所以如果有人可以推荐我在这里帮助我,我会非常感激!
由于
答案 0 :(得分:2)
通过创建一个名为app/vendor.bundle.ts
的新文件来解决此问题。
我现在不再将它们通过webpack配置导入,而是将它们放在捆绑文件中。
vendor.bundle.ts
文件本身看起来像这样:
(我还认为,将供应商与webpack配置分开的方法可以使webpack配置在这里更加干净)
import 'jquery';
import 'angular';
import 'angular-animate';
import 'angular-aria';
...
所以在我的webpack配置中,我现在只有一个入口点,就像这样:
module.exports = {
entry: {
vendor: './app/vendor.bundle.ts',
main: './app/app.module.ts',
}
}
...
现在,在我的karma.conf.js
中,可以像这样将供应商作为单个入口导入(请注意,我的应用程序在这里也是单个入口):
module.exports = function (config) {
config.set({
files: [
// Vendors
'app/vendor.bundle.ts',
// App
'app/app.module.ts',
// Load tests
'app/**/*spec.ts'
],
preprocessors: {
'app/**/*.ts': ['karma-typescript']
},
...
})
}