mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
85 lines
2.4 KiB
JavaScript
85 lines
2.4 KiB
JavaScript
'use strict';
|
|
|
|
var path = require('path');
|
|
|
|
module.exports = function (config) {
|
|
config.set({
|
|
basePath: '',
|
|
frameworks: ['jasmine'],
|
|
files: [
|
|
'test/helpers/**/*.js',
|
|
'test/spec/components/**/*.js'<% if(flux) { %>,
|
|
'test/spec/stores/**/*.js',
|
|
'test/spec/actions/**/*.js'<% } %>
|
|
],
|
|
preprocessors: {
|
|
'test/spec/components/**/*.js': ['webpack']<% if(flux) { %>,
|
|
'test/spec/stores/**/*.js': ['webpack'],
|
|
'test/spec/actions/**/*.js': ['webpack']<% } %>
|
|
},
|
|
webpack: {
|
|
cache: true,
|
|
module: {
|
|
loaders: [{
|
|
test: /\.gif/,
|
|
loader: 'url-loader?limit=10000&mimetype=image/gif'
|
|
}, {
|
|
test: /\.jpg/,
|
|
loader: 'url-loader?limit=10000&mimetype=image/jpg'
|
|
}, {
|
|
test: /\.png/,
|
|
loader: 'url-loader?limit=10000&mimetype=image/png'
|
|
}, {
|
|
test: /\.js$/,
|
|
loader: 'babel-loader'
|
|
},<% if (stylesLanguage === 'sass') { %> {
|
|
test: /\.sass/,
|
|
loader: 'style-loader!css-loader!sass-loader?outputStyle=expanded'
|
|
},<% } %><% if (stylesLanguage === 'scss') { %> {
|
|
test: /\.scss/,
|
|
loader: 'style-loader!css-loader!sass-loader?outputStyle=expanded'
|
|
},<% } %><% if (stylesLanguage === 'less') { %> {
|
|
test: /\.less/,
|
|
loader: 'style-loader!css-loader!less-loader'
|
|
},<% } %><% if (stylesLanguage === 'stylus') { %> {
|
|
test: /\.styl/,
|
|
loader: 'style-loader!css-loader!stylus-loader'
|
|
},<% } %> {
|
|
test: /\.css$/,
|
|
loader: 'style-loader!css-loader'
|
|
}]
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'styles': path.join(process.cwd(), './src/styles/'),
|
|
'components': path.join(process.cwd(), './src/scripts/components/')<% if(flux) { %>,
|
|
'stores': '../../../src/scripts/stores/',
|
|
'actions': '../../../src/scripts/actions/'<% } %>
|
|
}
|
|
}
|
|
},
|
|
webpackServer: {
|
|
stats: {
|
|
colors: true
|
|
}
|
|
},
|
|
exclude: [],
|
|
port: 8080,
|
|
logLevel: config.LOG_INFO,
|
|
colors: true,
|
|
autoWatch: false,
|
|
// Start these browsers, currently available:
|
|
// - Chrome
|
|
// - ChromeCanary
|
|
// - Firefox
|
|
// - Opera
|
|
// - Safari (only Mac)
|
|
// - PhantomJS
|
|
// - IE (only Windows)
|
|
browsers: ['PhantomJS'],
|
|
reporters: ['progress'],
|
|
captureTimeout: 60000,
|
|
singleRun: true
|
|
});
|
|
};
|