Skip to content

Commit a0b719c

Browse files
committed
Fix Build
1 parent a916c88 commit a0b719c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build/configs.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@ const resolve = _path => path.resolve(__dirname, '../', _path);
77
const configs = {
88
umdDev: {
99
input: resolve('lib/index.cjs.js'),
10-
file: resolve('dist/vuex-orm-apollo.js'),
10+
file: resolve('dist/vuex-orm-graphql.js'),
1111
format: 'umd',
1212
env: 'development'
1313
},
1414
umdProd: {
1515
input: resolve('lib/index.cjs.js'),
16-
file: resolve('dist/vuex-orm-apollo.min.js'),
16+
file: resolve('dist/vuex-orm-graphql.min.js'),
1717
format: 'umd',
1818
env: 'production'
1919
},
2020
commonjs: {
2121
input: resolve('lib/index.cjs.js'),
22-
file: resolve('dist/vuex-orm-apollo.common.js'),
22+
file: resolve('dist/vuex-orm-graphql.common.js'),
2323
format: 'cjs'
2424
},
2525
esm: {
2626
input: resolve('lib/index.js'),
27-
file: resolve('dist/vuex-orm-apollo.esm.js'),
27+
file: resolve('dist/vuex-orm-graphql.esm.js'),
2828
format: 'es'
2929
}
3030
};
@@ -49,7 +49,7 @@ function genConfig (opts) {
4949
},
5050

5151
output: {
52-
name: 'VuexORMApollo',
52+
name: 'VuexORMGraphQL',
5353
file: opts.file,
5454
format: opts.format
5555
}

0 commit comments

Comments
 (0)