Skip to content
Snippets Groups Projects
Commit 24054e84 authored by Huu Le (Lee)'s avatar Huu Le (Lee) Committed by GitHub
Browse files

fix: Rename folder e2e/.cache to e2e/cache (#632)

parent 598e9fb5
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,7 @@ export async function runCreateLlama(
}
export async function createTestDir() {
const cwd = path.join(__dirname, ".cache", crypto.randomUUID());
const cwd = path.join(__dirname, "cache", crypto.randomUUID());
await mkdir(cwd, { recursive: true });
return cwd;
}
......@@ -23,7 +23,7 @@
"clean": "rimraf --glob ./dist ./templates/**/__pycache__ ./templates/**/node_modules ./templates/**/poetry.lock",
"dev": "ncc build ./index.ts -w -o dist/",
"build": "npm run clean && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
"lint": "eslint . --ignore-pattern dist",
"lint": "eslint . --ignore-pattern dist --ignore-pattern e2e/cache",
"e2e": "playwright test",
"prepublishOnly": "cd ../../ && pnpm run build:release"
},
......
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