Skip to content

Commit 588b8f5

Browse files
author
surmon
committed
update to v3.0.5
2 parents 02c1741 + 9dc439d commit 588b8f5

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

22
## CHANGELOG
33

4+
### v3.0.5
5+
6+
update umd module name and rebuild
7+
48
### v3.0.4
59

610
1. fix object assign in spa

config/build.conf.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ module.exports = merge(baseConfig, {
1010
'vue-quill-editor': './src/index.js'
1111
},
1212
externals: {
13-
quill: 'quill',
13+
quill: {
14+
root: 'Quill',
15+
commonjs: 'quill',
16+
commonjs2: 'quill',
17+
amd: 'quill'
18+
},
1419
'object-assign': 'object-assign'
1520
},
1621
output: {

dist/vue-quill-editor.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-quill-editor",
33
"description": "Quill editor component for Vue",
4-
"version": "3.0.4",
4+
"version": "3.0.5",
55
"license": "MIT",
66
"private": false,
77
"author": {
@@ -44,7 +44,8 @@
4444
"unit": "cross-env BABEL_ENV=test NODE_ENV=testing karma start test/unit/karma.conf.js --watch",
4545
"test": "cross-env BABEL_ENV=test NODE_ENV=testing karma start test/unit/karma.conf.js --single-run",
4646
"lint": "eslint --ext .js,.vue src test/unit/specs",
47-
"finish": "npm run lint && npm test && npm run build"
47+
"finish": "npm run lint && npm test && npm run build",
48+
"publish": "git push && git push --tags && npm publish"
4849
},
4950
"dependencies": {
5051
"object-assign": "^4.1.1",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
/*
3-
* Vue-Quill-Editor ssr.js
3+
* Vue-Quill-Editor index.js
44
55
* Github: https://github.com/surmon-china/vue-quill-editor
66
*/

0 commit comments

Comments
 (0)