Skip to content
Snippets Groups Projects
Unverified Commit 4c2283c4 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 a059070d
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,7 @@ playwright-report/ ...@@ -45,6 +45,7 @@ playwright-report/
blob-report/ blob-report/
playwright/.cache/ playwright/.cache/
.tsbuildinfo .tsbuildinfo
packages/create-llama/e2e/cache
# intellij # intellij
**/.idea **/.idea
...@@ -4,3 +4,4 @@ pnpm-lock.yaml ...@@ -4,3 +4,4 @@ pnpm-lock.yaml
lib/ lib/
dist/ dist/
.docusaurus/ .docusaurus/
packages/create-llama/e2e/cache/
\ No newline at end of file
...@@ -175,7 +175,7 @@ export async function runCreateLlama( ...@@ -175,7 +175,7 @@ export async function runCreateLlama(
} }
export async function createTestDir() { 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 }); await mkdir(cwd, { recursive: true });
return cwd; return cwd;
} }
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
"clean": "rimraf --glob ./dist ./templates/**/__pycache__ ./templates/**/node_modules ./templates/**/poetry.lock", "clean": "rimraf --glob ./dist ./templates/**/__pycache__ ./templates/**/node_modules ./templates/**/poetry.lock",
"dev": "ncc build ./index.ts -w -o dist/", "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", "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", "e2e": "playwright test",
"prepublishOnly": "cd ../../ && pnpm run build:release" "prepublishOnly": "cd ../../ && pnpm run build:release"
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment