alpha
Login
or
Join now
danielroe.dev
/
nuxt-vitest
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-vitest. An vitest environment with support for testing code that needs a Nuxt runtime environment
nuxt
nuxt-module
testing
unit-testing
vitest
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: fix tests on Windows (#306)
author
Joaquín Sánchez
committer
GitHub
date
2 years ago
(Aug 14, 2023, 8:02 PM +0100)
commit
8253204a
8253204a17939e6605c26ff33bbb92cc34281bc9
parent
28d66d18
28d66d18ae628229e46ddba9814a25b8978c70f3
+3
-2
2 changed files
Expand all
Collapse all
Unified
Split
.npmrc
package.json
+1
.npmrc
View file
Reviewed
···
1
1
shamefully-hoist=true
2
2
resolution-mode=highest
3
3
+
shell-emulator=true
+2
-2
package.json
View file
Reviewed
···
2
2
"private": true,
3
3
"packageManager": "pnpm@8.6.12",
4
4
"scripts": {
5
5
-
"build": "pnpm dev:prepare && pnpm run --filter=./packages/* -r build",
6
6
-
"stub": "pnpm run --filter=./packages/* -r stub",
5
5
+
"build": "pnpm dev:prepare && pnpm -r --filter \"./packages/**\" run build",
6
6
+
"stub": "pnpm -r --filter \"./packages/**\" run stub",
7
7
"dev:prepare": "pnpm stub && pnpm nuxi prepare playground",
8
8
"dev": "pnpm run build && pnpm -C playground test:unit",
9
9
"lint": "pnpm lint:all:eslint && pnpm lint:all:prettier",