mirror of
https://github.com/wassname/generator-react-webpack.git
synced 2026-09-09 11:22:44 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7d01c86522 | ||
|
|
fffd03bfa3 | ||
|
|
d2992321e8 | ||
|
|
5eee756f3e | ||
|
|
91ac75db71 | ||
|
|
25c67ffd33 | ||
|
|
8cdcc2c432 | ||
|
|
cee53ad6c1 |
@@ -1,5 +1,21 @@
|
|||||||
# generator-react-webpack - Changelog
|
# generator-react-webpack - Changelog
|
||||||
|
|
||||||
|
## 3.0.0
|
||||||
|
___Upgrades___:
|
||||||
|
|
||||||
|
1. Updated react-webpack-template to 1.0.0 to include support for babel 6.
|
||||||
|
|
||||||
|
## 2.2.7
|
||||||
|
___Upgrades___:
|
||||||
|
|
||||||
|
1. Updated yeoman to 0.21
|
||||||
|
2. Added some badges for the readme
|
||||||
|
|
||||||
|
## 2.2.6
|
||||||
|
___Upgrades___:
|
||||||
|
|
||||||
|
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:___
|
___Upgrades:___
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
# generator-react-webpack V2.0 [](https://travis-ci.org/newtriks/generator-react-webpack) [](https://bitdeli.com/free "Bitdeli Badge")
|
# generator-react-webpack V2.0
|
||||||
|
|
||||||
|
[](https://travis-ci.org/newtriks/generator-react-webpack) [](https://bitdeli.com/free "Bitdeli Badge")    
|
||||||
|
|
||||||
> Yeoman generator for [ReactJS](http://facebook.github.io/react/) - lets you quickly set up a project including karma test runner and [Webpack](http://webpack.github.io/) module system.
|
> Yeoman generator for [ReactJS](http://facebook.github.io/react/) - lets you quickly set up a project including karma test runner and [Webpack](http://webpack.github.io/) module system.
|
||||||
|
|
||||||
# About
|
# About
|
||||||
@@ -54,7 +57,7 @@ The above command will create a new component, as well as its stylesheet and a b
|
|||||||
|
|
||||||
## Generating new stateless functional components
|
## Generating new stateless functional components
|
||||||
```
|
```
|
||||||
yo react-webpack:component:stateless my/namespaced/components/name
|
yo react-webpack:component my/namespaced/components/name --stateless
|
||||||
```
|
```
|
||||||
|
|
||||||
Stateless functional components where introduced in React v0.14. They have a much shorter syntax than regular ones and no state or lifecycle methods at all. Please read the [React 0.14 release notes](https://facebook.github.io/react/blog/2015/10/07/react-v0.14.html) to get more information about those components.
|
Stateless functional components where introduced in React v0.14. They have a much shorter syntax than regular ones and no state or lifecycle methods at all. Please read the [React 0.14 release notes](https://facebook.github.io/react/blog/2015/10/07/react-v0.14.html) to get more information about those components.
|
||||||
|
|||||||
+7
-4
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "generator-react-webpack",
|
"name": "generator-react-webpack",
|
||||||
"version": "2.2.5",
|
"version": "3.0.0",
|
||||||
"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",
|
||||||
@@ -34,12 +34,15 @@
|
|||||||
"url": "git://github.com/newtriks/generator-react-webpack.git"
|
"url": "git://github.com/newtriks/generator-react-webpack.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha"
|
"test": "mocha",
|
||||||
|
"release:major": "npm version major && npm publish && git push --follow-tags",
|
||||||
|
"release:minor": "npm version minor && npm publish && git push --follow-tags",
|
||||||
|
"release:patch": "npm version patch && npm publish && git push --follow-tags"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"react-webpack-template": "^0.2.0",
|
"react-webpack-template": "^1.0.0",
|
||||||
"underscore.string": "^3.2.2",
|
"underscore.string": "^3.2.2",
|
||||||
"yeoman-generator": "^0.20.3",
|
"yeoman-generator": "^0.21.0",
|
||||||
"yeoman-welcome": "^1.0.1"
|
"yeoman-welcome": "^1.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
Reference in New Issue
Block a user