Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.

Commit a6d5da0

Browse files
committed
chore: 升级依赖
1 parent 4dbc31c commit a6d5da0

File tree

4 files changed

+1134
-1046
lines changed

4 files changed

+1134
-1046
lines changed

package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@
2727
"vue-code-editor"
2828
],
2929
"dependencies": {
30-
"@babel/standalone": "^7.7.4",
31-
"css-vars-ponyfill": "^2.1.2",
32-
"screenfull": "^5.0.0",
33-
"splitpanes": "^2.1.1",
30+
"@babel/standalone": "^7.9.4",
31+
"css-vars-ponyfill": "^2.2.1",
32+
"screenfull": "^5.0.2",
3433
"throttle-debounce": "^2.1.0",
3534
"vue-codemirror": "^4.0.6",
3635
"vue-element-loading": "^1.1.5",
@@ -39,22 +38,22 @@
3938
"devDependencies": {
4039
"@commitlint/cli": "^8.3.5",
4140
"@commitlint/config-conventional": "^8.3.4",
42-
"@vue/cli-plugin-babel": "^4.0.0",
43-
"@vue/cli-plugin-eslint": "^4.0.0",
44-
"@vue/cli-service": "^4.0.0",
41+
"@vue/cli-plugin-babel": "^4.2.3",
42+
"@vue/cli-plugin-eslint": "^4.2.3",
43+
"@vue/cli-service": "^4.2.3",
4544
"@vue/eslint-config-standard": "^4.0.0",
46-
"babel-eslint": "^10.0.3",
45+
"babel-eslint": "^10.1.0",
4746
"commitizen": "^4.0.3",
48-
"core-js": "^3.3.2",
47+
"core-js": "^3.6.4",
4948
"cz-conventional-changelog": "^3.1.0",
5049
"eslint": "^5.16.0",
5150
"eslint-plugin-vue": "^5.0.0",
5251
"github-release-notes": "^0.17.1",
53-
"husky": "^4.2.1",
54-
"lint-staged": "^9.4.2",
52+
"husky": "^4.2.3",
53+
"lint-staged": "^10.0.9",
5554
"standard-version": "^7.1.0",
56-
"vue": "^2.6.10",
57-
"vue-template-compiler": "^2.6.10"
55+
"vue": "^2.6.11",
56+
"vue-template-compiler": "^2.6.11"
5857
},
5958
"gitHooks": {
6059
"pre-commit": "lint-staged"

src/components/vue-run-sfc-main.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default {
4949
z-index: 1;
5050
box-sizing: border-box;
5151
overflow-y: auto;
52-
border: 1px solid #ebeef5;
52+
border: 1px solid var(--vue-run-sfc-border, #ebeef5);
5353
border-top: none;
5454
}
5555
@@ -71,8 +71,8 @@ export default {
7171
margin: 0;
7272
left: 0;
7373
position: relative;
74-
border-left: 1px solid #ebeef5;
75-
border-right: 1px solid #ebeef5;
74+
border-left: 1px solid var(--vue-run-sfc-border, #ebeef5);
75+
border-right: 1px solid var(--vue-run-sfc-border, #ebeef5);
7676
}
7777
.vue-run-sfc-main > .multipane-resizer:before {
7878
display: block;

vue.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
module.exports = {
2+
productionSourceMap: false,
23
css: { extract: false },
34
outputDir: './docs/',
45
publicPath: './',

0 commit comments

Comments
 (0)