Skip to content

Commit 8693af3

Browse files
committed
3.2.1
1 parent 148da8c commit 8693af3

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

internals/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const uniq = require('lodash/uniq');
44

55
const ReactBoilerplate = {
66
// This refers to the react-boilerplate version this project is based on.
7-
version: '3.2.0',
7+
version: '3.2.1',
88

99
/**
1010
* The DLL Plugin provides a dramatic speed increase to webpack build and hot module reloading

package.json

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-boilerplate",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "A highly scalable, offline-first foundation with the best DX and a focus on performance and best practices",
55
"repository": {
66
"type": "git",
@@ -105,7 +105,10 @@
105105
}
106106
},
107107
"rules": {
108-
"arrow-parens": ["error", "always"],
108+
"arrow-parens": [
109+
"error",
110+
"always"
111+
],
109112
"arrow-body-style": [
110113
2,
111114
"as-needed"
@@ -141,7 +144,10 @@
141144
"prefer-template": 2,
142145
"class-methods-use-this": 0,
143146
"react/forbid-prop-types": 0,
144-
"react/jsx-first-prop-new-line": [2, "multiline"],
147+
"react/jsx-first-prop-new-line": [
148+
2,
149+
"multiline"
150+
],
145151
"react/jsx-filename-extension": 0,
146152
"react/jsx-no-target-blank": 0,
147153
"react/require-extension": 0,

0 commit comments

Comments
 (0)