Skip to content

Commit ccb272b

Browse files
author
Evan Jacobs
committed
5.3.0
See CHANGELOG.md
1 parent 41b56f4 commit ccb272b

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
### 5.3.0 (12/31/2016)
2+
3+
Updated some dependencies...
4+
5+
```
6+
autoprefixer-stylus ^0.9.2 >> ^0.11.0
7+
babel-eslint ^6.0.0 >> ^7.0.0
8+
babel-jest ^15.0.0 >> ^18.0.0
9+
budo ^8.1.0 >> ^9.0.0
10+
jest-cli ^15.1.0 >> ^18.0.0
11+
```
12+
13+
Also added the "transform inline environment variables" Babel plugin. It helps get the smallest possible minification when used in conjunction with Uglify's dead code elimination in situations where code is only included for development purposes, e.g.
14+
15+
```js
16+
if (process.env.NODE_ENV === 'development') {
17+
// do something special
18+
}
19+
```
20+
21+
You can read more on it [on the Babel website](https://babeljs.io/docs/plugins/transform-inline-environment-variables/).
22+
23+
Happy New Year! 🎉
24+
125
### 5.2.0 (9/13/2016)
226

327
Update various dependencies, including:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "generator-enigma",
33
"description": "Generate a React application with best practice enforcement, integrated testing, and more.",
4-
"version": "5.2.0",
4+
"version": "5.3.0",
55
"license": "MIT",
66
"contributors": [
77
"Evan Scott <[email protected]> (http://yaycmyk.com)"

0 commit comments

Comments
 (0)