Skip to content
Snippets Groups Projects
Commit 4cffd3f9 authored by Mateusz Tyszczak's avatar Mateusz Tyszczak :scroll: Committed by Bartek Wrona
Browse files

Remove examples cache before testing

parent f4ebdb09
No related branches found
No related tags found
1 merge request!260Typescript & toolset version update
This commit is part of merge request !260. Comments created here will be created in the context of that merge request.
......@@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "rm -rf ./.next && next build",
"start": "next start",
"lint": "next lint"
},
......
......@@ -6,7 +6,7 @@
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "npm run build && npm run start"
"test": "rm -rf ./dist && npm run build && npm run start"
},
"dependencies": {
"@hiveio/wax": "file:../../../ts"
......
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
build: {
transpile: ['@hiveio/wax', '@hiveio/beekeeper']
}
debug: false
})
......@@ -8,7 +8,7 @@
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "unset CI && DEBUG=pw:webserver playwright test --workers 1 --max-failures 1 --project=wax_nuxt_vite_testsuite"
"test": "rm -rf ./.nuxt ./.output ./node_modules/.cache && unset CI && DEBUG=pw:webserver playwright test --workers 1 --max-failures 1 --project=wax_nuxt_vite_testsuite"
},
"dependencies": {
"@hiveio/wax": "file:../../../ts",
......
......@@ -7,7 +7,7 @@
"dev": "vite --host 0.0.0.0 --port 5173",
"build": "vite build",
"preview": "vite preview",
"test": "unset CI && DEBUG=pw:webserver playwright test --workers 1 --max-failures 1 --project=wax_react_vite_testsuite"
"test": "rm -rf ./dist && unset CI && DEBUG=pw:webserver playwright test --workers 1 --max-failures 1 --project=wax_react_vite_testsuite"
},
"dependencies": {
"@hiveio/wax": "file:../../../ts",
......
......@@ -7,7 +7,7 @@
"dev": "vite --host 0.0.0.0 --port 5173",
"build": "vite build",
"preview": "vite preview",
"test": "unset CI && DEBUG=pw:webserver playwright test --workers 1 --max-failures 1 --project=wax_vue_vite_testsuite"
"test": "rm -rf ./node_modules/.vite && unset CI && DEBUG=pw:webserver playwright test --workers 1 --max-failures 1 --project=wax_vue_vite_testsuite"
},
"dependencies": {
"@hiveio/wax": "file:../../../ts",
......
......@@ -4,7 +4,7 @@
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build": "rm -rf ./dist ./node_modules/.cache && vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment