Skip to content

Commit fe4d214

Browse files
committed
Prepare 3.1.0
1 parent 492d2c6 commit fe4d214

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,41 @@
11
# generator-react-webpack - Changelog
22

3+
## 3.1.0
4+
5+
1. Added support for postcss (Patch provided by [stylesuxx](https://github.com/stylesuxx))
6+
37
## 3.0.1
4-
___Upgrades___:
8+
59
1. Unneeded files (License, .npmignore) are not copied anymore
610
2. Existence of .babelrc is now checked in unit tests
711

812
## 3.0.0
9-
___Upgrades___:
1013

1114
1. Updated react-webpack-template to 1.0.0 to include support for babel 6.
1215

1316
## 2.2.7
14-
___Upgrades___:
1517

1618
1. Updated yeoman to 0.21
1719
2. Added some badges for the readme
1820

1921
## 2.2.6
20-
___Upgrades___:
2122

2223
1. Added new version of ```react-webpack-template``` (provides new features for continuous testing and better dist build support)
2324

2425
## 2.2.5
25-
___Upgrades:___
2626

2727
1. Added ability to create stateless components
2828
2. Updated README with new installation instructions (need to install globally)
2929
3. Added new tests for components (should be easier to handle in the future)
3030

3131
## 2.2.4
32-
___Upgrades:___
3332

3433
1. Added automatic generation of components displayName property. This makes it easier to keep track of components that reside in deep subfolders (like src/components/my/example/components/indexComponent) would become "index" as a displayName, but should instead be MyExampleComponentsIndexComponent instead.
3534

3635
## 2.2.3
37-
___Fixes:___
3836

3937
1. Fixed .gitignore renaming (Patch provided by [VovanR](https://github.com/VovanR))
4038

4139
## 2.2.0:
42-
___Upgrades:___
4340

4441
1. Added new version of react-webpack-template, including support for React 0.14.

test/generators/app/indexTest.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,18 +140,17 @@ describe('react-webpack:app non-default-prompts', () => {
140140
it('should generate dot files', () => {
141141

142142
assert.file([
143+
'.babelrc',
143144
'.editorconfig',
144145
'.eslintrc',
145146
'.gitignore',
146-
'.npmignore',
147147
'.yo-rc.json'
148148
]);
149149
});
150150

151151
it('should generate project configuration files', () => {
152152

153153
assert.file([
154-
'LICENSE',
155154
'package.json'
156155
]);
157156
});

0 commit comments

Comments
 (0)