Skip to content

Commit f4a420e

Browse files
authored
feat: add toggle word wrap (#2)
* feat(monaco): added word wrap toggle * style: avoid message overlap with bottom switches * chore(prettier): migrate to async formatting and updated plugin imports * chore(deps): align versions with the usage * chore(prettier): use async formatting in codemirror * chore(deps): update vite-plugin-vuetify and vuetify versions * chore(build): use vite-plugin-dts for types gen * chore(deps): add missing lint-staged dev dependency
1 parent e10279d commit f4a420e

File tree

10 files changed

+2735
-1847
lines changed

10 files changed

+2735
-1847
lines changed

package.json

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,30 @@
99
"files": [
1010
"dist"
1111
],
12-
"types": "dist/repl.d.ts",
12+
"types": "dist/vue-repl.d.ts",
1313
"exports": {
1414
".": {
15-
"types": "./dist/repl.d.ts",
15+
"types": "./dist/vue-repl.d.ts",
1616
"import": "./dist/vue-repl.js",
1717
"require": "./dist/ssr-stub.js"
1818
},
1919
"./monaco-editor": {
20-
"types": "./dist/editor-types.d.ts",
20+
"types": "./dist/monaco-editor.d.ts",
2121
"import": "./dist/monaco-editor.js",
2222
"require": null
2323
},
2424
"./codemirror-editor": {
25-
"types": "./dist/editor-types.d.ts",
25+
"types": "./dist/codemirror-editor.d.ts",
2626
"import": "./dist/codemirror-editor.js",
2727
"require": null
2828
},
29-
"./style.css": "./dist/style.css",
30-
"./dist/style.css": "./dist/style.css"
29+
"./package.json": "./package.json",
30+
"./style.css": "./dist/vue-repl.css",
31+
"./dist/style.css": "./dist/vue-repl.css"
3132
},
3233
"scripts": {
3334
"dev": "vite",
3435
"build": "vite build",
35-
"build-types": "vue-tsc -p tsconfig.build.json && api-extractor run -c api-extractor.json && node scripts/cleanup.js",
3636
"build-preview": "vite build -c vite.preview.config.ts",
3737
"format": "prettier --write .",
3838
"release": "bumpp -r",
@@ -68,16 +68,17 @@
6868
"@types/node": "^20.11.25",
6969
"@types/prettier": "^2.7.3",
7070
"@vitejs/plugin-vue": "^5.0.4",
71-
"@volar/cdn": "~1.11.1",
71+
"@volar/cdn": "~1.9.2",
7272
"@volar/monaco": "~1.9.2",
73-
"@volar/typescript": "~2.1.2",
74-
"@vue/language-service": "2.0.6",
73+
"@volar/typescript": "~1.9.2",
74+
"@vue/language-service": "1.8.6",
7575
"bumpp": "^9.4.0",
7676
"codemirror": "^5.65.14",
7777
"emmet": "^2.4.6",
7878
"emmet-monaco-es": "^5.3.2",
7979
"fflate": "^0.8.2",
8080
"hash-sum": "^2.0.0",
81+
"lint-staged": "^15.5.1",
8182
"monaco-editor-core": "^0.46.0",
8283
"monaco-editor-textmate": "^4.0.0",
8384
"monaco-textmate": "^3.0.1",
@@ -86,18 +87,19 @@
8687
"path-browserify": "^1.0.1",
8788
"prettier": "^3.2.5",
8889
"rimraf": "^5.0.5",
89-
"sass": "^1.71.1",
90+
"sass": "^1.86.3",
9091
"sucrase": "^3.35.0",
91-
"typescript": "^5.4.2",
92-
"vite": "^5.1.5",
93-
"vite-plugin-vuetify": "^2.0.2",
94-
"vue": "^3.4.21",
95-
"vue-tsc": "2.0.6",
96-
"vuetify": "3.5.8"
92+
"typescript": "^5.8.3",
93+
"vite": "^6.3.2",
94+
"vite-plugin-dts": "^4.5.3",
95+
"vite-plugin-vuetify": "^2.1.1",
96+
"vue": "^3.5.13",
97+
"vue-tsc": "2.2.8",
98+
"vuetify": "3.8.2"
9799
},
98100
"peerDependencies": {
99-
"vue": "^3.3.4",
100-
"vuetify": "^3.3.15"
101+
"vue": "^3.5.13",
102+
"vuetify": "^3.8.2"
101103
},
102104
"publishConfig": {
103105
"access": "public"

0 commit comments

Comments
 (0)