mirror of
https://github.com/fluxscape/fluxscape.git
synced 2026-01-11 14:52:54 +01:00
chore: rename project name (#60)
This commit is contained in:
@@ -72,18 +72,18 @@ import { getCurrentPlatform } from '../helper';
|
||||
// NOTE: Getting error "Cannot set properties of null (setting 'dev')" here,
|
||||
// It basically means that some package is not relative to this path.
|
||||
console.log("--- Run 'npm install' ...");
|
||||
|
||||
if (platform === "darwin") {
|
||||
|
||||
if (platform === 'darwin') {
|
||||
execSync(`npm install electron-notarize`, {
|
||||
stdio: 'inherit',
|
||||
env: process.env
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
execSync(`npm install --arch=${arch} --scope noodl-editor`, {
|
||||
execSync(`npm install --arch=${arch} --scope fluxscape-editor`, {
|
||||
stdio: 'inherit',
|
||||
env: process.env
|
||||
})
|
||||
});
|
||||
console.log("--- 'npm install' done!");
|
||||
|
||||
// NOTE: npm install --arch= does this too
|
||||
@@ -99,13 +99,13 @@ import { getCurrentPlatform } from '../helper';
|
||||
// Build: Replace "dugite"
|
||||
// Build: Replace "desktop-trampoline"
|
||||
console.log("--- Run 'npm run build' ...");
|
||||
execSync('npx lerna exec --scope noodl-editor -- npm run build', {
|
||||
execSync('npx lerna exec --scope fluxscape-editor -- npm run build', {
|
||||
stdio: 'inherit',
|
||||
env: {
|
||||
...process.env,
|
||||
TARGET_PLATFORM,
|
||||
DISABLE_SIGNING,
|
||||
CSC_NAME,
|
||||
CSC_NAME
|
||||
}
|
||||
});
|
||||
console.log("--- 'npm run build' done!");
|
||||
|
||||
Reference in New Issue
Block a user