From 405bc8ad7b96aa1f91444909eca6eae5f3044a6d Mon Sep 17 00:00:00 2001 From: Nate Sesti Date: Sun, 13 Aug 2023 23:53:16 -0700 Subject: ci: :green_heart: split into package and prepackage steps --- extension/scripts/prepackage.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 extension/scripts/prepackage.js (limited to 'extension/scripts/prepackage.js') diff --git a/extension/scripts/prepackage.js b/extension/scripts/prepackage.js new file mode 100644 index 00000000..c55df802 --- /dev/null +++ b/extension/scripts/prepackage.js @@ -0,0 +1,31 @@ +const { exec } = require("child_process"); +const fs = require("fs"); +const path = require("path"); + +exec("npm install", (error) => { + if (error) throw error; + console.log("npm install completed"); + + exec("npm run typegen", (error) => { + if (error) throw error; + console.log("npm run typegen completed"); + + process.chdir("react-app"); + + exec("npm install", (error) => { + if (error) throw error; + console.log("npm install in react-app completed"); + + exec("npm run build", (error) => { + if (error) throw error; + if (!fs.existsSync(path.join("dist", "assets", "index.js"))) { + throw new Error("react-app build did not produce index.js"); + } + if (!fs.existsSync(path.join("dist", "assets", "index.css"))) { + throw new Error("react-app build did not produce index.css"); + } + console.log("npm run build in react-app completed"); + }); + }); + }); +}); -- cgit v1.2.3-70-g09d2