fix(all): Migration to Linus.
This commit is contained in:
parent
820942c41b
commit
d8e950c91d
2 changed files with 20 additions and 4 deletions
16
deploy.sh
16
deploy.sh
|
@ -77,11 +77,27 @@ if [ -e "$DEPLOYMENT_SOURCE/package.json" ]; then
|
||||||
cd - > /dev/null
|
cd - > /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# 2. Install TypeScript
|
# 2. Install TypeScript
|
||||||
echo "[General Bots Deployer] Transpiling..."
|
echo "[General Bots Deployer] Transpiling..."
|
||||||
eval ./node_modules/typescript/bin/tsc -v
|
eval ./node_modules/typescript/bin/tsc -v
|
||||||
eval ./node_modules/typescript/bin/tsc -p "$DEPLOYMENT_SOURCE"
|
eval ./node_modules/typescript/bin/tsc -p "$DEPLOYMENT_SOURCE"
|
||||||
|
|
||||||
|
# 1.1 Install default.gbui npm packages
|
||||||
|
if [ -e "$DEPLOYMENT_SOURCE/packages/default.gbui/package.json" ]; then
|
||||||
|
echo "[General Bots Deployer] Running npm install for default.gbui..."
|
||||||
|
cd "$DEPLOYMENT_SOURCE/packages/default.gbui"
|
||||||
|
eval npm install
|
||||||
|
exitWithMessageOnError "npm failed"
|
||||||
|
echo "[General Bots Deployer] Building react app..."
|
||||||
|
eval npm run build
|
||||||
|
echo "[General Bots Deployer] OK."
|
||||||
|
cd "$DEPLOYMENT_SOURCE"
|
||||||
|
exitWithMessageOnError "react build failed"
|
||||||
|
cd - > /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
echo "[General Bots Deployer] OK."
|
echo "[General Bots Deployer] OK."
|
||||||
|
|
||||||
# 4. KuduSync
|
# 4. KuduSync
|
||||||
|
|
|
@ -808,12 +808,12 @@ export class GBDeployer implements IGBDeployer {
|
||||||
|
|
||||||
// Install modules and compiles the web app.
|
// Install modules and compiles the web app.
|
||||||
|
|
||||||
GBLog.info(`Installing modules default.gbui (It may take a few minutes)...`);
|
// GBLog.info(`Installing modules default.gbui (It may take a few minutes)...`);
|
||||||
|
|
||||||
child_process.execSync(`${npm} install`, { cwd: root });
|
// child_process.execSync(`${npm} install`, { cwd: root });
|
||||||
|
|
||||||
GBLog.info(`Transpiling default.gbui...`);
|
// GBLog.info(`Transpiling default.gbui...`);
|
||||||
child_process.execSync(`${npm} run build`, { cwd: root });
|
// child_process.execSync(`${npm} run build`, { cwd: root });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue