Skip to content

Commit 1ce5755

Browse files
author
Barthélémy Ledoux
authored
fix: trigger release of the packages (#15405)
1 parent 5fd91bd commit 1ce5755

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

npm/vite-dev-server/README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
# ⚡️ + 🌲 Cypress Component Testing w/ Vite
22

3-
> **Note** this package is not meant to be used outside of cypress component testing.
3+
To install vite in you component testing environment,
4+
1. Install it `yarn add @cypress/vite-dev-server`
5+
2. Add it to `cypress/plugins/index.js`
6+
7+
```js
8+
import { startDevServer } from '@cypress/vite-dev-server'
9+
10+
module.exports = (on, config) => {
11+
on('dev-server:start', async (options) => startDevServer({ options }))
12+
13+
return config
14+
}
15+
```

npm/vue/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,8 @@ module.exports = (on, config) => {
743743
The Cypress.io Component Testing Team
744744

745745
- [Jessica Sachs](https://github.com/jessicasachs) (Current Maintainer, [Vue Test Utils](https://github.com/vuejs/vue-test-utils) Maintainer)
746+
- [Lachlan Miller](https://github.com/lmiller1990) (Current Maintainer, [Vue Test Utils](https://github.com/vuejs/vue-test-utils) Maintainer)
747+
- [Bart Ledoux](https://github.com/elevatebart) (Current Maintainer, [Vue Styleguidist](https://github.com/vue-styleguidist/vue-styleguidist) Maintainer)
746748
- [Gleb Bahmutov](https://github.com/bahmutov) (Original Author, Current Maintainer of [@cypress/react](https://github.com//cypress-io/@cypress/react))
747749

748750
Support: if you find any problems with this module, [tweet](https://twitter.com/_jessicasachs) / [open issue](https://github.com/cypress-io/cypress/issues) on Github

npm/webpack-dev-server/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
> **Note** this package is not meant to be used outside of cypress component testing.
44
5+
Install `@cypress/vue` or `@cypress/react` to get this package working properly
6+
57
## Responsibilities
68

79
- Make a `webpack.config` from the users setup

0 commit comments

Comments
 (0)