Skip to content

Commit 76632ad

Browse files
committed
fix: move rollup config and case fix
1 parent 288871f commit 76632ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Declan de Wet <[email protected]>",
66
"bugs": "https://github.com/nuxt/vue-meta/issues",
77
"scripts": {
8-
"build": "rimraf lib && rollup -c",
8+
"build": "rimraf lib && rollup -c scripts/rollup.config.js",
99
"codecov": "codecov",
1010
"deploy": "npm version",
1111
"dev": "cd examples && npm run dev && cd ..",

rollup.config.js renamed to scripts/rollup.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import commonJs from 'rollup-plugin-commonjs'
1+
import commonjs from 'rollup-plugin-commonjs'
22
import nodeResolve from 'rollup-plugin-node-resolve'
33
import json from 'rollup-plugin-json'
44
import buble from 'rollup-plugin-buble'
@@ -25,7 +25,7 @@ const baseConfig = {
2525
plugins: [
2626
json(),
2727
nodeResolve(),
28-
commonJs(),
28+
commonjs(),
2929
buble(),
3030
]
3131
}

0 commit comments

Comments
 (0)