We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38a0702 commit 3f643cfCopy full SHA for 3f643cf
epicshop/post-set-playground.js
@@ -3,9 +3,10 @@
3
import path from 'path'
4
import fs from 'fs-extra'
5
6
-const playgroundDir =
7
- process.argv[2] || process.env.PLAYGROUND_DIR || process.cwd()
8
-const wranglerPath = path.join(playgroundDir, 'wrangler.jsonc')
+const wranglerPath = path.join(
+ process.env.EPICSHOP_PLAYGROUND_DEST_DIR,
+ 'wrangler.jsonc',
9
+)
10
11
if (await fs.pathExists(wranglerPath)) {
12
try {
0 commit comments