Skip to content
This repository was archived by the owner on Feb 11, 2023. It is now read-only.

Commit e61e9c0

Browse files
committed
Babel env will now pull plugins based on current node version. nvmrc added to streamline getting the node version I use.
1 parent cc0f7bd commit e61e9c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v8.1.2

src/server/.babelrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
"presets": [
33
["env", {
44
"targets": {
5-
"node": "6.10"
5+
"node": "current"
66
}
77
}]
88
],
99
"plugins": [
1010
"transform-runtime",
11-
"transform-es2015-modules-commonjs",
1211
"transform-object-rest-spread"
1312
]
1413
}

0 commit comments

Comments
 (0)