Skip to content

Commit cfe874a

Browse files
committed
fix: 🔨 adds vplugin as dev dependency
1 parent bb6eadd commit cfe874a

File tree

4 files changed

+603
-536
lines changed

4 files changed

+603
-536
lines changed

package.json

Lines changed: 42 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,46 @@
2626
"scripts": {
2727
"postbump": "yarn vue-cli-service build && git add dist && git commit -m 'chore: new build'",
2828
"posttag": "git push --follow-tags && npm publish --tag alpha"
29-
}
29+
},
30+
"types": [
31+
{
32+
"type": "feat",
33+
"section": "Features"
34+
},
35+
{
36+
"type": "fix",
37+
"section": "Bug Fixes"
38+
},
39+
{
40+
"type": "chore",
41+
"hidden": true
42+
},
43+
{
44+
"type": "docs",
45+
"hidden": false,
46+
"section": "Documentation"
47+
},
48+
{
49+
"type": "imp",
50+
"section": "Improvements"
51+
},
52+
{
53+
"type": "style",
54+
"hidden": true
55+
},
56+
{
57+
"type": "refactor",
58+
"section": "Refactoring"
59+
},
60+
{
61+
"type": "perf",
62+
"hidden": true
63+
},
64+
{
65+
"type": "test",
66+
"hidden": true
67+
}
68+
]
3069
},
3170
"main": "dist/vue2-editor.common.js",
3271
"module": "dist/vue2-editor.esm.js",
@@ -41,8 +80,7 @@
4180
],
4281
"dependencies": {
4382
"lodash": "^4.17.11",
44-
"quill": "^1.3.6",
45-
"vue-cli-plugin-vp": "davidroyer/vue-cli-plugin-vp"
83+
"quill": "^1.3.6"
4684
},
4785
"devDependencies": {
4886
"@commitlint/cli": "^7.6.1",
@@ -63,6 +101,7 @@
63101
"sass-loader": "^7.1.0",
64102
"standard-version": "^6.0.1",
65103
"vue": "^2.6.10",
104+
"vue-cli-plugin-vplugin": "davidroyer/vue-cli-plugin-vplugin",
66105
"vue-router": "^3.0.6",
67106
"vue-template-compiler": "^2.5.21"
68107
},

vplugin.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
globals: {
3+
quill: "Quill"
4+
}
5+
};

0 commit comments

Comments
 (0)