fix(compile): intel mac compile fix (#31575)

This commit is contained in:
Nathan Whitaker 2025-12-11 15:05:09 -08:00 committed by GitHub
parent 224be5a3d9
commit 5a51219a66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 11 additions and 16 deletions

4
Cargo.lock generated
View file

@ -5786,9 +5786,9 @@ dependencies = [
[[package]]
name = "libsui"
version = "0.12.2"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99dc19fe502fbaca89d5607b14a0e301a40af42a14e33afc349e73eaef2bc86f"
checksum = "6c238ae4b3e1467d748ad42f1ffa68618ee40b901bcee0296b0ecea07306b1f5"
dependencies = [
"editpe",
"image",

View file

@ -314,7 +314,7 @@ dprint-plugin-markdown = "=0.20.0"
dprint-plugin-typescript = "=0.95.13"
env_logger = "=0.11.6"
fancy-regex = "=0.14.0"
libsui = "0.12.2"
libsui = "0.12.3"
malva = "=0.12.1"
markup_fmt = "=0.22.0"
open = "5.0.1"

View file

@ -1,6 +1,5 @@
{
"tempDir": true,
"if": "notMacIntel",
"steps": [{
"args": [
"eval",

View file

@ -1,6 +1,5 @@
{
"tempDir": true,
"if": "notMacIntel",
"steps": [{
"args": "run -A setup.ts",
"output": "[WILDCARD]"

View file

@ -1,11 +1,11 @@
{
"tempDir": true,
"steps": [{
"if": "notMacIntel",
"if": "unix",
"args": "compile --output main main.ts",
"output": "compile.out"
}, {
"if": "notMacIntel",
"if": "unix",
"commandName": "./main",
"args": [],
"output": "main.out"

View file

@ -4,11 +4,11 @@
"args": "run -A setup.js",
"output": "[WILDCARD]"
}, {
"if": "notMacIntel",
"if": "unix",
"args": "compile --allow-read=data --include data --output main main.ts",
"output": "[WILDCARD]"
}, {
"if": "notMacIntel",
"if": "unix",
"commandName": "./main",
"args": [],
"output": "[WILDCARD]",

View file

@ -1,6 +1,5 @@
{
"tempDir": true,
"if": "notMacIntel",
"steps": [{
"args": "install --allow-scripts",
"output": "[WILDCARD]"

View file

@ -3,11 +3,11 @@
// use this so the vfs output is all in the same folder
"canonicalizedTempDir": true,
"steps": [{
"if": "notMacIntel",
"if": "unix",
"args": "compile -A --output main main.ts",
"output": "compile.out"
}, {
"if": "notMacIntel",
"if": "unix",
"commandName": "./main",
"args": [],
"output": "main.out"

View file

@ -4,11 +4,11 @@
"args": "install",
"output": "[WILDCARD]"
}, {
"if": "notMacIntel",
"if": "unix",
"args": "compile --output main main.js",
"output": "compile.out"
}, {
"if": "notMacIntel",
"if": "unix",
"commandName": "./main",
"args": [],
"output": "output.out",

View file

@ -23,11 +23,9 @@
"exitCode": 1,
"output": "node_modules_dir.out"
}, {
"if": "notMacIntel",
"args": "compile --allow-read --output exec package-a/index.mjs",
"output": "compile.out"
}, {
"if": "notMacIntel",
"commandName": "./exec",
"args": [],
"output": "output.out"