Skip to content

Commit b1cc638

Browse files
committed
redefine isCI switch
1 parent f516fa7 commit b1cc638

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.yarnrc.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

webpack.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ const { execSync } = require("child_process");
66
module.exports = (env) => {
77
const isProd = env.production === true;
88
const manifest = JSON.parse(readFileSync("manifest.json", "utf8"));
9+
const isCI = process.env.CI === "true";
10+
11+
console.log("isCI: ", isCI);
12+
console.log("BUILD_LINK: ", process.env.BUILD_LINK);
913

1014
return {
1115
mode: isProd ? "production" : "development",

0 commit comments

Comments
 (0)