Skip to content

Commit e27b9ef

Browse files
committed
Disable drop console.
Update vue 3.2.39.
1 parent f3631d0 commit e27b9ef

File tree

4 files changed

+320
-370
lines changed

4 files changed

+320
-370
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<link rel="icon" href="/favicon.ico" />
77
<link
88
rel="stylesheet"
9-
href="https://cdn.jsdelivr.net/npm/[email protected].0/dist/css/bootstrap.min.css"
10-
integrity="sha256-7ZWbZUAi97rkirk4DcEp4GWDPkWpRMcNaEyXGsNXjLg="
9+
href="https://cdn.jsdelivr.net/npm/[email protected].1/dist/css/bootstrap.min.css"
10+
integrity="sha256-KTPJY0ik6ufLv48oDKCYFYaptcCX75UrmWytfSjy+tA="
1111
crossorigin="anonymous"
1212
/>
1313
<title>Vue CodeMirror6 Demo</title>

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"peerDependencies": {
7575
"@vue/composition-api": "^1.7.0",
7676
"codemirror": "^6.0.1",
77-
"vue": "^2.6.14 || ^3.2.37"
77+
"vue": "^2.6.14 || ^3.2.39"
7878
},
7979
"peerDependenciesMeta": {
8080
"@vue/composition-api": {
@@ -85,18 +85,18 @@
8585
"@codemirror/lang-javascript": "^6.0.2",
8686
"@codemirror/lang-markdown": "^6.0.1",
8787
"@types/lodash": "^4.14.184",
88-
"@types/node": "^18.7.14",
89-
"@typescript-eslint/eslint-plugin": "^5.36.1",
90-
"@typescript-eslint/parser": "^5.36.1",
91-
"@vitejs/plugin-vue": "^3.0.3",
88+
"@types/node": "^18.7.16",
89+
"@typescript-eslint/eslint-plugin": "^5.36.2",
90+
"@typescript-eslint/parser": "^5.36.2",
91+
"@vitejs/plugin-vue": "^3.1.0",
9292
"@vue/eslint-config-prettier": "^7.0.0",
9393
"@vue/tsconfig": "^0.1.3",
9494
"codemirror": "^6.0.1",
9595
"eslint": "^8.23.0",
9696
"eslint-config-google": "^0.14.0",
9797
"eslint-config-prettier": "^8.5.0",
9898
"eslint-import-resolver-alias": "^1.1.2",
99-
"eslint-import-resolver-typescript": "^3.5.0",
99+
"eslint-import-resolver-typescript": "^3.5.1",
100100
"eslint-plugin-html": "^7.1.0",
101101
"eslint-plugin-import": "^2.26.0",
102102
"eslint-plugin-jsdoc": "^39.3.6",
@@ -110,14 +110,14 @@
110110
"lodash": "^4.17.21",
111111
"prettier": "^2.7.1",
112112
"rimraf": "^3.0.2",
113-
"rollup-plugin-visualizer": "^5.8.0",
113+
"rollup-plugin-visualizer": "^5.8.1",
114114
"typescript": "^4.8.2",
115-
"vite": "^3.0.9",
116-
"vite-plugin-banner": "^0.4.0",
117-
"vite-plugin-checker": "^0.5.0",
118-
"vue": "^3.2.38",
115+
"vite": "^3.1.0",
116+
"vite-plugin-banner": "^0.5.0",
117+
"vite-plugin-checker": "^0.5.1",
118+
"vue": "^3.2.39",
119119
"vue-eslint-parser": "^9.0.3",
120-
"vue-tsc": "^0.40.5"
120+
"vue-tsc": "^0.40.13"
121121
},
122122
"husky": {
123123
"hooks": {

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default defineConfig(async ({ mode, command }): Promise<UserConfig> => {
109109
minify: 'esbuild',
110110
},
111111
esbuild: {
112-
drop: command === 'serve' ? [] : ['console'],
112+
// drop: command === 'serve' ? [] : ['console'],
113113
},
114114
};
115115

0 commit comments

Comments
 (0)