Compare commits

...

10 Commits

Author SHA1 Message Date
Chris fb1f271f6b 1.0.1 2015-11-18 08:12:34 +01:00
Chris 5d512c5bf5 Adjusted changelog to reflect isparta update 2015-11-18 08:08:51 +01:00
Chris 9ecfa9ef90 Added fix for isparta version update 2015-11-18 08:06:51 +01:00
Chris 614fcfc54e 1.0.0 2015-11-17 07:39:46 +01:00
Chris bbd0f7666e Updated babel to 6.0 2015-11-17 07:39:34 +01:00
Chris 33150f0cf6 Reverted fix for config merge. 2015-10-29 08:34:29 +01:00
Chris 831fb6f8b9 Merge branch 'master' of https://github.com/weblogixx/react-webpack-template 2015-10-29 08:32:34 +01:00
Chris 2538e2c405 Reverted fix for config merge. 2015-10-29 08:32:27 +01:00
Chris 4cd213706e Merge pull request #10 from mjul/merge_order
Fix override order for base.js and dev.js / dist.js
2015-10-29 08:03:40 +01:00
Martin Jul b3f99eb73e Fix override order for base.js and dev.js / dist.js 2015-10-27 23:27:18 +01:00
6 changed files with 41 additions and 16 deletions
+6
View File
@@ -0,0 +1,6 @@
{
"presets": [
"es2015",
"react"
]
}
+14
View File
@@ -1,5 +1,19 @@
# react-webpack-template - Changelog
## 1.0.1:
___Upgrades___:
1. Updated isparta-instrumenter-loader to new version 1.0
## 1.0.0:
___Upgrades___:
1. Updated to babel core version (6.0.x)
2. Replaced isparta-loader with the more current (and better maintained) isparta-instrumenter-loader.
## 0.3.2:
___Features___:
1. Added support for bower components in webpack
2. Added coverage reporting via karma-coverage
## 0.3.1:
___Upgrades___:
1. Added bugfix for tests in watch mode (could be overridden by config)
+1 -2
View File
@@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2015 Chris
Copyright (c) 2015 Christian Schilling <cs@weblogixx.de>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+9 -8
View File
@@ -7,6 +7,15 @@ var BowerWebpackPlugin = require('bower-webpack-plugin');
module.exports = {
devtool: 'eval',
module: {
preLoaders: [
{
test: /\.(js|jsx)$/,
loader: 'isparta-instrumenter-loader',
include: [
path.join(__dirname, '/../src')
]
}
],
loaders: [
{
test: /\.(png|jpg|gif|woff|woff2|css|sass|scss|less|styl)$/,
@@ -19,14 +28,6 @@ module.exports = {
path.join(__dirname, '/../src'),
path.join(__dirname, '/../test')
]
},
{
test: /\.(js|jsx)$/,
loader: 'babel-loader',
include: [
path.join(__dirname, '/../src')
],
loader: 'isparta'
}
]
},
+5 -2
View File
@@ -23,8 +23,11 @@ module.exports = function(config) {
noInfo: true
},
coverageReporter: {
type: 'html',
dir: 'coverage/'
dir: 'coverage/',
reporters: [
{ type: 'html' },
{ type: 'text' }
]
}
});
};
+6 -4
View File
@@ -1,6 +1,6 @@
{
"name": "react-webpack-template",
"version": "0.3.2",
"version": "1.0.1",
"description": "A base skeleton template for react and webpack without task runners",
"main": "server.js",
"scripts": {
@@ -36,8 +36,10 @@
},
"homepage": "https://github.com/weblogixx/react-webpack-template#readme",
"devDependencies": {
"babel-core": "^5.8.22",
"babel-loader": "^5.3.2",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"bower-webpack-plugin": "^0.1.9",
"chai": "^3.2.0",
"copyfiles": "^0.2.1",
@@ -47,7 +49,7 @@
"eslint-plugin-react": "^3.3.0",
"file-loader": "^0.8.4",
"glob": "^5.0.15",
"isparta-loader": "^1.0.0",
"isparta-instrumenter-loader": "^1.0.0",
"karma": "^0.13.9",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.3",