mirror of
https://github.com/wassname/generator-react-webpack.git
synced 2026-09-11 12:10:36 +08:00
Prepare 3.1.0
This commit is contained in:
+5
-8
@@ -1,44 +1,41 @@
|
|||||||
# generator-react-webpack - Changelog
|
# generator-react-webpack - Changelog
|
||||||
|
|
||||||
|
## 3.1.0
|
||||||
|
|
||||||
|
1. Added support for postcss (Patch provided by [stylesuxx](https://github.com/stylesuxx))
|
||||||
|
|
||||||
## 3.0.1
|
## 3.0.1
|
||||||
___Upgrades___:
|
|
||||||
1. Unneeded files (License, .npmignore) are not copied anymore
|
1. Unneeded files (License, .npmignore) are not copied anymore
|
||||||
2. Existence of .babelrc is now checked in unit tests
|
2. Existence of .babelrc is now checked in unit tests
|
||||||
|
|
||||||
## 3.0.0
|
## 3.0.0
|
||||||
___Upgrades___:
|
|
||||||
|
|
||||||
1. Updated react-webpack-template to 1.0.0 to include support for babel 6.
|
1. Updated react-webpack-template to 1.0.0 to include support for babel 6.
|
||||||
|
|
||||||
## 2.2.7
|
## 2.2.7
|
||||||
___Upgrades___:
|
|
||||||
|
|
||||||
1. Updated yeoman to 0.21
|
1. Updated yeoman to 0.21
|
||||||
2. Added some badges for the readme
|
2. Added some badges for the readme
|
||||||
|
|
||||||
## 2.2.6
|
## 2.2.6
|
||||||
___Upgrades___:
|
|
||||||
|
|
||||||
1. Added new version of ```react-webpack-template``` (provides new features for continuous testing and better dist build support)
|
1. Added new version of ```react-webpack-template``` (provides new features for continuous testing and better dist build support)
|
||||||
|
|
||||||
## 2.2.5
|
## 2.2.5
|
||||||
___Upgrades:___
|
|
||||||
|
|
||||||
1. Added ability to create stateless components
|
1. Added ability to create stateless components
|
||||||
2. Updated README with new installation instructions (need to install globally)
|
2. Updated README with new installation instructions (need to install globally)
|
||||||
3. Added new tests for components (should be easier to handle in the future)
|
3. Added new tests for components (should be easier to handle in the future)
|
||||||
|
|
||||||
## 2.2.4
|
## 2.2.4
|
||||||
___Upgrades:___
|
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
## 2.2.3
|
## 2.2.3
|
||||||
___Fixes:___
|
|
||||||
|
|
||||||
1. Fixed .gitignore renaming (Patch provided by [VovanR](https://github.com/VovanR))
|
1. Fixed .gitignore renaming (Patch provided by [VovanR](https://github.com/VovanR))
|
||||||
|
|
||||||
## 2.2.0:
|
## 2.2.0:
|
||||||
___Upgrades:___
|
|
||||||
|
|
||||||
1. Added new version of react-webpack-template, including support for React 0.14.
|
1. Added new version of react-webpack-template, including support for React 0.14.
|
||||||
|
|||||||
@@ -140,10 +140,10 @@ describe('react-webpack:app non-default-prompts', () => {
|
|||||||
it('should generate dot files', () => {
|
it('should generate dot files', () => {
|
||||||
|
|
||||||
assert.file([
|
assert.file([
|
||||||
|
'.babelrc',
|
||||||
'.editorconfig',
|
'.editorconfig',
|
||||||
'.eslintrc',
|
'.eslintrc',
|
||||||
'.gitignore',
|
'.gitignore',
|
||||||
'.npmignore',
|
|
||||||
'.yo-rc.json'
|
'.yo-rc.json'
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
@@ -151,7 +151,6 @@ describe('react-webpack:app non-default-prompts', () => {
|
|||||||
it('should generate project configuration files', () => {
|
it('should generate project configuration files', () => {
|
||||||
|
|
||||||
assert.file([
|
assert.file([
|
||||||
'LICENSE',
|
|
||||||
'package.json'
|
'package.json'
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user