Skip to content

Commit 828fd3a

Browse files
committed
update rollup again, fix paths issue
1 parent fbd44ba commit 828fd3a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"node-resolve": "^1.3.3",
5959
"nyc": "^11.1.0",
6060
"prettier": "^1.4.1",
61-
"rollup": "^0.48.0",
61+
"rollup": "^0.48.2",
6262
"rollup-plugin-buble": "^0.15.0",
6363
"rollup-plugin-commonjs": "^8.0.2",
6464
"rollup-plugin-json": "^2.1.0",

rollup.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import path from 'path';
2-
import nodeResolve from 'rollup-plugin-node-resolve';
2+
import resolve from 'rollup-plugin-node-resolve';
33
import commonjs from 'rollup-plugin-commonjs';
44
import json from 'rollup-plugin-json';
55
import typescript from 'rollup-plugin-typescript';
@@ -27,7 +27,7 @@ export default [
2727
}
2828
}
2929
},
30-
nodeResolve({ jsnext: true, module: true }),
30+
resolve(),
3131
commonjs(),
3232
json(),
3333
typescript({
@@ -48,7 +48,7 @@ export default [
4848
{
4949
input: 'src/server-side-rendering/register.js',
5050
plugins: [
51-
nodeResolve({ jsnext: true, module: true }),
51+
resolve(),
5252
commonjs(),
5353
buble({
5454
include: 'src/**',

yarn.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -2349,9 +2349,9 @@ rollup-watch@^4.3.1:
23492349
require-relative "0.8.7"
23502350
rollup-pluginutils "^2.0.1"
23512351

2352-
rollup@^0.48.0:
2353-
version "0.48.0"
2354-
resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.48.0.tgz#6bc70af4ecbc0f4754ea3175c947bdf37eaf2cf4"
2352+
rollup@^0.48.2:
2353+
version "0.48.2"
2354+
resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.48.2.tgz#dd9214eaf78d98a7771bf5583123cc80a0b5d6dc"
23552355

23562356
run-async@^2.2.0:
23572357
version "2.3.0"

0 commit comments

Comments
 (0)