Skip to content

Commit f340d6d

Browse files
author
Alberto García
committed
Added babel-plugin object-rest-spread
1 parent 99b761c commit f340d6d

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

.babelrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"presets": [ "env" ],
2+
"presets": ["env"],
3+
"plugins": ["transform-object-rest-spread"],
34
"env": {
45
"test": {
56
"plugins": [

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ dist/
99
node_modules/
1010
bower_components/
1111
coverage/
12+
.vscode/
1213

1314
## Files
1415
result.xml

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 Christoph von Gellhorn
3+
Copyright (c) 2018 Alberto García Mora
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Redux Boilerplate
22
===========
33

4-
> Redux Boilerplate with Webpack, Babel, SASS, mocha, istambul, express on board
4+
> Redux Boilerplate with Webpack, Babel, SASS, mocha, istambul and express on board
55
66
Credits to Christoph von Gellhorn. This boilerplate is based on [webpack-boilerplate](https://github.com/cvgellhorn/webpack-boilerplate)
77

app/counter/counter.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ describe('Counter', () => {
2424
counter(undefined, { })
2525
).toEqual(0);
2626
})
27-
})
27+
})

package-lock.json

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "boilerplate-redux",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Redux Boilerplate with Webpack, Babel, SASS, mocha, istambul, express on board",
55
"author": "Alberto García Mora",
66
"license": "MIT",
@@ -31,6 +31,7 @@
3131
"babel-core": "6.26.3",
3232
"babel-loader": "7.1.4",
3333
"babel-plugin-istanbul": "4.1.6",
34+
"babel-plugin-transform-object-rest-spread": "^6.26.0",
3435
"babel-preset-env": "1.7.0",
3536
"babel-register": "6.26.0",
3637
"clean-webpack-plugin": "0.1.19",

0 commit comments

Comments
 (0)