Compare commits

..
5 Commits
Author SHA1 Message Date
Chris b95fc4344a 2.2.2 2015-10-12 16:35:14 +02:00
Chris 66b85f48d8 Fixed missing packages when using sass/less 2015-10-12 16:34:54 +02:00
Chris bf2df82159 2.2.1 2015-10-12 08:42:28 +02:00
Chris d729c3caa8 Added changelog to ignored files. 2015-10-12 08:41:47 +02:00
Chris 4f99a5a9db Added (mis-)spelling fix... again :( 2015-10-12 08:31:40 +02:00
4 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ Out of the box it comes with support for:
- Ability to unit test components via Karma and Mocha/Chai - Ability to unit test components via Karma and Mocha/Chai
## Changes in Version 2.0 ## Changes in Version 2.0
Tthis generator is written in ES2015. This means it is ___not compatible with node.js versions before 4.0___. This generator is written in ES2015. This means it is ___not compatible with node.js versions before 4.0___.
It also does __NOT__ include support for Flux-Frameworks anymore. Instead, we will use it as a base for other generators to build upon. This will make the base generator easier to use and update. It also does __NOT__ include support for Flux-Frameworks anymore. Instead, we will use it as a base for other generators to build upon. This will make the base generator easier to use and update.
+1
View File
@@ -91,6 +91,7 @@ module.exports = generator.Base.extend({
let excludeList = [ let excludeList = [
'LICENCE', 'LICENCE',
'README.md', 'README.md',
'CHANGELOG.md',
'node_modules', 'node_modules',
'package.json' 'package.json'
]; ];
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "generator-react-webpack", "name": "generator-react-webpack",
"version": "2.2.0", "version": "2.2.2",
"description": "Yeoman generator for using React with Webpack via Babel", "description": "Yeoman generator for using React with Webpack via Babel",
"keywords": [ "keywords": [
"yeoman-generator", "yeoman-generator",
+6 -3
View File
@@ -51,7 +51,8 @@
"value": "sass", "value": "sass",
"suffix": ".sass", "suffix": ".sass",
"packages": [ "packages": [
{ "name": "sass-loader", "version": "^1.0.1" } { "name": "sass-loader", "version": "^1.0.1" },
{ "name": "node-sass", "version": "^3.3.3" }
] ]
}, },
{ {
@@ -59,7 +60,8 @@
"value": "scss", "value": "scss",
"suffix": ".scss", "suffix": ".scss",
"packages": [ "packages": [
{ "name": "sass-loader", "version": "^1.0.1" } { "name": "sass-loader", "version": "^1.0.1" },
{ "name": "node-sass", "version": "^3.3.3" }
] ]
}, },
{ {
@@ -67,7 +69,8 @@
"value": "less", "value": "less",
"suffix": ".less", "suffix": ".less",
"packages": [ "packages": [
{ "name": "less-loader", "version": "^2.0.0" } { "name": "less-loader", "version": "^2.0.0" },
{ "name": "less", "version": "^2.5.3" }
] ]
}, },
{ {