include modules

pull/5200/head
filip mertens 2 months ago
parent e901cc1726
commit 305ed16877
  1. 3
      apps/remixdesktop/insiders.json
  2. 2
      apps/remixdesktop/package.json
  3. 8
      apps/remixdesktop/rundist.bash
  4. 8
      apps/remixdesktop/rundist_tsc.bash

@ -5,7 +5,8 @@
"generateUpdatesFilesForAllChannels": false,
"icon": "assets",
"files": [
"build/**/*"
"build/**/*",
"node_modules/node-pty/**/*"
],
"afterSign": "aftersign.js",
"afterAllArtifactBuild": "afterbuild.js",

@ -1,7 +1,7 @@
{
"name": "remixdesktop",
"version": "1.0.8-insiders",
"main": "build/apps/remixdesktop/src/main.js",
"main": "build/main.js",
"license": "MIT",
"type": "commonjs",
"description": "Remix IDE Desktop",

@ -5,13 +5,13 @@ version=$(awk -F'"' '/"version":/ {print $4}' package.json)
# Determine the command to run based on the version
if [[ $version == *"beta"* ]]; then
command="yarn tscbuild -c beta.json"
command="yarn esbuild -c beta.json"
elif [[ $version == *"alpha"* ]]; then
command="yarn tscbuild -c alpha.json"
command="yarn esbuild -c alpha.json"
elif [[ $version == *"insiders"* ]]; then
command="yarn tscbuild -c insiders.json"
command="yarn esbuild -c insiders.json"
else
command="yarn tscbuild -c latest.json"
command="yarn esbuild -c latest.json"
fi
# Append any arguments passed in CLI

@ -5,13 +5,13 @@ version=$(awk -F'"' '/"version":/ {print $4}' package.json)
# Determine the command to run based on the version
if [[ $version == *"beta"* ]]; then
command="yarn esbuild -c beta.json"
command="yarn tscbuild -c beta.json"
elif [[ $version == *"alpha"* ]]; then
command="yarn esbuild -c alpha.json"
command="yarn tscbuild -c alpha.json"
elif [[ $version == *"insiders"* ]]; then
command="yarn esbuild -c insiders.json"
command="yarn tscbuild -c insiders.json"
else
command="yarn esbuild -c latest.json"
command="yarn tscbuild -c latest.json"
fi
# Append any arguments passed in CLI
Loading…
Cancel
Save