mirror of
https://github.com/denoland/deno.git
synced 2025-12-23 08:48:24 +00:00
fix(compile): intel mac compile fix (#31575)
This commit is contained in:
parent
224be5a3d9
commit
5a51219a66
10 changed files with 11 additions and 16 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"tempDir": true,
|
||||
"if": "notMacIntel",
|
||||
"steps": [{
|
||||
"args": [
|
||||
"eval",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"tempDir": true,
|
||||
"if": "notMacIntel",
|
||||
"steps": [{
|
||||
"args": "run -A setup.ts",
|
||||
"output": "[WILDCARD]"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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]",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"tempDir": true,
|
||||
"if": "notMacIntel",
|
||||
"steps": [{
|
||||
"args": "install --allow-scripts",
|
||||
"output": "[WILDCARD]"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue