A customized tiptap ui based tiptap-vuetify. It depends on vue 2 and vuetify 2.
This project uses a customized version for some tiptap editor packages: https://github.com/Dietech-Group/tiptap/. For every new version a release with *.tgz archives for all tiptap packages is created. It's important to use the same package version for all tiptap packages.
Example:
"@tiptap/core": "3.6.2",
"@tiptap/suggestion": "https://github.com/Dietech-Group/tiptap/releases/download/v3.6.2-dietech.0/tiptap-suggestion-3.6.2.tgz"
To release a new version with a *.tgz archive you need to trigger the github release workflow (release.yml) with creating a new tag (starting with v) and push it.
package.json.
git tag <tagname>
git push origin <tagname>
The <tagname> should be v<package version> (ex. v1.1.2).
VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:
- Disable the built-in TypeScript Extension
- Run
Extensions: Show Built-in Extensionsfrom VSCode's command palette - Find
TypeScript and JavaScript Language Features, right click and selectDisable (Workspace)
- Run
- Reload the VSCode window by running
Developer: Reload Windowfrom the command palette.
See Vite Configuration Reference.
npm installnpm run devnpm run buildLint with ESLint
npm run lint