@tauri-apps/cli
Advanced tools
Comparing version 2.0.0-beta.0 to 2.0.0-beta.1
@@ -9,5 +9,5 @@ // Copyright 2019-2023 Tauri Programme within The Commons Conservancy | ||
return new Promise((resolve, reject) => { | ||
run(args, binName, res => { | ||
if (res instanceof Error) { | ||
reject(res) | ||
run(args, binName, (error, res) => { | ||
if (error) { | ||
reject(error) | ||
} else { | ||
@@ -14,0 +14,0 @@ resolve(res) |
{ | ||
"name": "@tauri-apps/cli", | ||
"version": "2.0.0-beta.0", | ||
"version": "2.0.0-beta.1", | ||
"description": "Command line interface for building Tauri apps", | ||
@@ -71,13 +71,13 @@ "funding": { | ||
"optionalDependencies": { | ||
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.0", | ||
"@tauri-apps/cli-darwin-x64": "2.0.0-beta.0", | ||
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.0", | ||
"@tauri-apps/cli-darwin-arm64": "2.0.0-beta.0", | ||
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.0", | ||
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.0", | ||
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.0", | ||
"@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.0", | ||
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.0", | ||
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.0" | ||
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.1", | ||
"@tauri-apps/cli-darwin-x64": "2.0.0-beta.1", | ||
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.1", | ||
"@tauri-apps/cli-darwin-arm64": "2.0.0-beta.1", | ||
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.1", | ||
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.1", | ||
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.1", | ||
"@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.1", | ||
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.1", | ||
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.1" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
196070