We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b92233a commit f07a8daCopy full SHA for f07a8da
README.md
@@ -198,25 +198,25 @@ That's it! You can now use Nuxt TipTap Editor in your Nuxt app ✨
198
199
```bash
200
# Install dependencies
201
-npm install
+yarn install
202
203
# Generate type stubs
204
-npm run dev:prepare
+yarndev:prepare
205
206
# Develop with the playground
207
-npm run dev
+yarn dev
208
209
# Build the playground
210
-npm run dev:build
+yarn build
211
212
# Run ESLint
213
-npm run lint
+yarn lint
214
215
# Run Vitest
216
-npm run test
217
-npm run test:watch
+yarn test
+yarn test:watch
218
219
-# Release new version
+# Release new version - needs to be with npm for login to work
220
npm run release
221
```
222
0 commit comments