### Running the development server Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Starts the development server for manual testing of the editor integration. ```bash pnpm run dev ``` -------------------------------- ### Install Dependencies Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Installs the necessary dependencies for the project using pnpm. ```bash pnpm install ``` -------------------------------- ### Reproducing LTS matrix run locally Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Sets up the environment to reproduce an LTS matrix run locally, including installing specific LTS versions of CKEditor 5 packages. ```bash cp .env.example .env # fill in CKEDITOR_LICENSE_KEY in .env pnpm add -D ckeditor5@lts-v47 ckeditor5-premium-features@lts-v47 pnpm run test:integration ``` -------------------------------- ### Prepare release branch Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Creates a new branch for the release, named according to the current date. ```bash git checkout -b release-[YYYYMMDD] ``` -------------------------------- ### Building the package Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Builds the package, preparing it for publishing. ```bash pnpm run build ``` -------------------------------- ### Executing tests Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Runs the full automated test suite for the project. ```bash pnpm run test ``` -------------------------------- ### Generate changelog entries Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Generates changelog entries for the release. Supports options for specifying date and dry-run. ```bash pnpm run release:prepare-changelog ``` ```bash pnpm run release:prepare-changelog --date=2025-06-11 ``` ```bash pnpm run release:prepare-changelog --dry-run ``` -------------------------------- ### Update master branch Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Ensures the local master branch is up-to-date with the remote repository. ```bash git fetch && git checkout master && git pull ``` -------------------------------- ### Executing integration tests Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Runs only the real-editor integration test used by the CI version matrix. ```bash pnpm run test:integration ``` -------------------------------- ### Running tests in watch mode Source: https://github.com/ckeditor/ckeditor5-vue/blob/master/README.md Executes the test suite in watch mode, automatically re-running tests when changes are detected. ```bash pnpm run test:watch ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.