Skip to content

Commit 7316e1b

Browse files
committed
fix(config): update rollup config based on the new version
1 parent 3bf25d6 commit 7316e1b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

config/rollup.config.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@
77
import commonjs from 'rollup-plugin-commonjs'
88
import uglify from 'rollup-plugin-babili'
99
export default {
10-
exports: 'named',
11-
entry: './src/main.js',
12-
dest: './.dist/observable-air.js',
13-
format: 'umd',
14-
moduleName: 'O',
10+
input: './src/main.js',
11+
output: {
12+
exports: 'named',
13+
name: 'O',
14+
format: 'umd',
15+
file: './.dist/observable-air.js',
16+
},
1517
plugins: [
1618
uglify(),
1719
commonjs({}),

0 commit comments

Comments
 (0)