mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 15:09:33 +01:00
18 lines
327 B
JavaScript
18 lines
327 B
JavaScript
|
|
const { execSync } = require("child_process");
|
||
|
|
|
||
|
|
const gitHash = execSync("git rev-parse --short HEAD").toString().trim();
|
||
|
|
module.exports = {
|
||
|
|
all: {
|
||
|
|
REACT_APP_GIT_HASH: gitHash,
|
||
|
|
},
|
||
|
|
dev: {
|
||
|
|
REACT_APP_CI: true,
|
||
|
|
},
|
||
|
|
web: {
|
||
|
|
REACT_APP_PLATFORM: "web",
|
||
|
|
},
|
||
|
|
desktop: {
|
||
|
|
REACT_APP_PLATFORM: "desktop",
|
||
|
|
},
|
||
|
|
};
|