Skip to content

Commit 282e316

Browse files
committed
chore(serverless-plugin): update dependencies
1 parent e228f90 commit 282e316

File tree

3 files changed

+136
-83
lines changed

3 files changed

+136
-83
lines changed

packages/serverless-plugin/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@
4545
"globby": "6.1.0"
4646
},
4747
"devDependencies": {
48-
"ava": "0.24.0",
49-
"babel-core": "6.26.0",
48+
"ava": "0.25.0",
49+
"babel-core": "6.26.3",
5050
"babel-plugin-transform-object-rest-spread": "6.26.0",
51-
"babel-preset-env": "1.6.1",
51+
"babel-preset-env": "1.7.0",
5252
"babel-register": "6.26.0",
53-
"chrome-launcher": "0.10.0",
54-
"rollup": "0.53.3",
55-
"rollup-plugin-babel": "3.0.3",
56-
"rollup-plugin-node-resolve": "3.0.0"
53+
"chrome-launcher": "0.10.2",
54+
"rollup": "0.59.1",
55+
"rollup-plugin-babel": "3.0.4",
56+
"rollup-plugin-node-resolve": "3.3.0"
5757
},
5858
"babel": {
5959
"sourceMaps": true,

packages/serverless-plugin/rollup.config.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ import babel from 'rollup-plugin-babel'
44

55
export default {
66
input: 'src/index.js',
7-
output: [{ file: 'dist/index.js', format: 'cjs' }, { file: 'dist/index.es.js', format: 'es' }],
8-
sourcemap: true,
7+
output: [
8+
{ file: 'dist/index.js', format: 'cjs', sourcemap: true },
9+
{ file: 'dist/index.es.js', format: 'es', sourcemap: true },
10+
],
11+
912
plugins: [
1013
resolve({
1114
// module: true, // Default: true

0 commit comments

Comments
 (0)