Skip to content

Commit ac483d4

Browse files
committed
fix: npm audit
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
1 parent 567bf7c commit ac483d4

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"test": "lerna run --stream test --",
1616
"test:ci": "lerna run --stream test:coverage --",
1717
"link": "lerna exec npm link",
18-
"unlink": "lerna exec npm unlink"
18+
"unlink": "lerna exec npm unlink",
19+
"ci": "npm run lint:fix && npm run build && npm run test:ci"
1920
},
2021
"devDependencies": {
2122
"@commitlint/cli": "^20.0.0",

packages/core/src/core.e2e.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const useCache = true;
1414
const shouldCleanupAfterTest = true;
1515

1616
async function typescriptProjectGenerator(projectDir: string) {
17-
await safeExec(projectDir, "npm create vite . -- --template vanilla-ts");
17+
await safeExec(projectDir, "npm create vite . -- --template vanilla-ts --no-interactive");
1818
await safeExec(projectDir, "npm install");
1919
}
2020

packages/react/src/react.e2e.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const useCache = true;
1717
const shouldCleanupAfterTest = true;
1818

1919
async function reactProjectGenerator(projectDir: string) {
20-
await safeExec(projectDir, "npm create vite . -- --template react-ts");
20+
await safeExec(projectDir, "npm create vite . -- --template react-ts --no-interactive");
2121
await safeExec(projectDir, "npm install");
2222
}
2323

0 commit comments

Comments
 (0)