We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1d1feb commit 2978955Copy full SHA for 2978955
packages/apps-engine/scripts/deno-cache.js
@@ -76,7 +76,7 @@ const rootPath = path.join(__dirname, '..');
76
const denoRuntimePath = path.join(rootPath, 'deno-runtime');
77
const DENO_DIR = process.env.DENO_DIR ?? path.join(rootPath, '.deno-cache');
78
79
-// In CI envs, break if lockfile changes; in dev envs, don't update the lockfile
+// In CI envs, break if lockfile changes; in dev envs, it's alright
80
const commandLine = CI ? 'deno install --frozen --entrypoint main.ts' : 'deno install --entrypoint main.ts';
81
82
childProcess.execSync(commandLine, {
0 commit comments