Skip to content

Commit 7f626b6

Browse files
committed
2.2.1
1 parent 5038443 commit 7f626b6

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

dist/vue-numeric.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-numeric",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "Input field component to display currency value based on Vue.",
55
"author": "Kevin Ongko",
66
"main": "dist/vue-numeric.min.js",

webpack.config.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ module.exports = {
1717
},
1818
entry: './src/index.js',
1919
externals: {
20-
'accounting-js': 'accounting'
20+
'accounting-js': {
21+
commonjs: 'accounting-js',
22+
commonjs2: 'accounting-js',
23+
amd: 'accounting-js',
24+
root: 'accounting'
25+
}
2126
},
2227
output: {
2328
path: path.resolve(__dirname, 'dist'),

0 commit comments

Comments
 (0)