mirror of
https://github.com/JonasKruckenberg/tauri-build.git
synced 2025-08-15 05:15:06 +00:00
publish new versions
This commit is contained in:
parent
2430bade1e
commit
f17e87e61d
BIN
dist/cli.darwin-x64.node
generated
vendored
BIN
dist/cli.darwin-x64.node
generated
vendored
Binary file not shown.
BIN
dist/cli.linux-x64-gnu.node
generated
vendored
BIN
dist/cli.linux-x64-gnu.node
generated
vendored
Binary file not shown.
BIN
dist/cli.win32-x64-msvc.node
generated
vendored
BIN
dist/cli.win32-x64-msvc.node
generated
vendored
Binary file not shown.
69
dist/index.js
generated
vendored
69
dist/index.js
generated
vendored
@ -1,21 +1,28 @@
|
|||||||
require('./sourcemap-register.js');/******/ (() => { // webpackBootstrap
|
require('./sourcemap-register.js');/******/ (() => { // webpackBootstrap
|
||||||
/******/ var __webpack_modules__ = ({
|
/******/ var __webpack_modules__ = ({
|
||||||
|
|
||||||
/***/ 2994:
|
/***/ 1533:
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||||
|
|
||||||
module.exports = require(__nccwpck_require__.ab + "cli.darwin-x64.node")
|
module.exports = require(__nccwpck_require__.ab + "cli.darwin-x64.node")
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 4458:
|
/***/ 7382:
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||||
|
|
||||||
module.exports = require(__nccwpck_require__.ab + "cli.linux-x64-gnu.node")
|
module.exports = require(__nccwpck_require__.ab + "cli.linux-x64-gnu.node")
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 7191:
|
/***/ 1626:
|
||||||
|
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||||
|
|
||||||
|
module.exports = require(__nccwpck_require__.ab + "cli.linux-x64-musl.node")
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 5817:
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||||
|
|
||||||
module.exports = require(__nccwpck_require__.ab + "cli.win32-x64-msvc.node")
|
module.exports = require(__nccwpck_require__.ab + "cli.win32-x64-msvc.node")
|
||||||
@ -64,7 +71,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.buildProject = void 0;
|
exports.buildProject = void 0;
|
||||||
const cli_1 = __nccwpck_require__(879);
|
const cli_1 = __nccwpck_require__(3642);
|
||||||
const path_1 = __nccwpck_require__(1017);
|
const path_1 = __nccwpck_require__(1017);
|
||||||
const tiny_glob_1 = __importDefault(__nccwpck_require__(8785));
|
const tiny_glob_1 = __importDefault(__nccwpck_require__(8785));
|
||||||
const core = __importStar(__nccwpck_require__(1368));
|
const core = __importStar(__nccwpck_require__(1368));
|
||||||
@ -1984,7 +1991,7 @@ exports.checkBypass = checkBypass;
|
|||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 5200:
|
/***/ 6740:
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||||
|
|
||||||
const { existsSync, readFileSync } = __nccwpck_require__(7147)
|
const { existsSync, readFileSync } = __nccwpck_require__(7147)
|
||||||
@ -2000,7 +2007,8 @@ function isMusl() {
|
|||||||
// For Node 10
|
// For Node 10
|
||||||
if (!process.report || typeof process.report.getReport !== 'function') {
|
if (!process.report || typeof process.report.getReport !== 'function') {
|
||||||
try {
|
try {
|
||||||
return readFileSync('/usr/bin/ldd', 'utf8').includes('musl')
|
const lddPath = (__nccwpck_require__(2081).execSync)('which ldd').toString().trim();
|
||||||
|
return readFileSync(lddPath, 'utf8').includes('musl')
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
@ -2051,7 +2059,7 @@ switch (platform) {
|
|||||||
if (localFileExisted) {
|
if (localFileExisted) {
|
||||||
nativeBinding = __nccwpck_require__(2695)
|
nativeBinding = __nccwpck_require__(2695)
|
||||||
} else {
|
} else {
|
||||||
nativeBinding = __nccwpck_require__(7191)
|
nativeBinding = __nccwpck_require__(5817)
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
loadError = e
|
loadError = e
|
||||||
@ -2090,6 +2098,15 @@ switch (platform) {
|
|||||||
}
|
}
|
||||||
break
|
break
|
||||||
case 'darwin':
|
case 'darwin':
|
||||||
|
localFileExisted = existsSync(join(__dirname, 'cli.darwin-universal.node'))
|
||||||
|
try {
|
||||||
|
if (localFileExisted) {
|
||||||
|
nativeBinding = __nccwpck_require__(1822)
|
||||||
|
} else {
|
||||||
|
nativeBinding = __nccwpck_require__(8636)
|
||||||
|
}
|
||||||
|
break
|
||||||
|
} catch {}
|
||||||
switch (arch) {
|
switch (arch) {
|
||||||
case 'x64':
|
case 'x64':
|
||||||
localFileExisted = existsSync(join(__dirname, 'cli.darwin-x64.node'))
|
localFileExisted = existsSync(join(__dirname, 'cli.darwin-x64.node'))
|
||||||
@ -2097,7 +2114,7 @@ switch (platform) {
|
|||||||
if (localFileExisted) {
|
if (localFileExisted) {
|
||||||
nativeBinding = __nccwpck_require__(5921)
|
nativeBinding = __nccwpck_require__(5921)
|
||||||
} else {
|
} else {
|
||||||
nativeBinding = __nccwpck_require__(2994)
|
nativeBinding = __nccwpck_require__(1533)
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
loadError = e
|
loadError = e
|
||||||
@ -2147,7 +2164,7 @@ switch (platform) {
|
|||||||
if (localFileExisted) {
|
if (localFileExisted) {
|
||||||
nativeBinding = __nccwpck_require__(3578)
|
nativeBinding = __nccwpck_require__(3578)
|
||||||
} else {
|
} else {
|
||||||
nativeBinding = __nccwpck_require__(2896)
|
nativeBinding = __nccwpck_require__(1626)
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
loadError = e
|
loadError = e
|
||||||
@ -2160,7 +2177,7 @@ switch (platform) {
|
|||||||
if (localFileExisted) {
|
if (localFileExisted) {
|
||||||
nativeBinding = __nccwpck_require__(4940)
|
nativeBinding = __nccwpck_require__(4940)
|
||||||
} else {
|
} else {
|
||||||
nativeBinding = __nccwpck_require__(4458)
|
nativeBinding = __nccwpck_require__(7382)
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
loadError = e
|
loadError = e
|
||||||
@ -2233,10 +2250,14 @@ module.exports.logError = logError
|
|||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 879:
|
/***/ 3642:
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||||
|
|
||||||
const { run, logError } = __nccwpck_require__(5200)
|
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
const { run, logError } = __nccwpck_require__(6740)
|
||||||
|
|
||||||
module.exports.run = (args, binName) => {
|
module.exports.run = (args, binName) => {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
@ -3081,6 +3102,14 @@ module.exports = eval("require")("./cli.android-arm64.node");
|
|||||||
module.exports = eval("require")("./cli.darwin-arm64.node");
|
module.exports = eval("require")("./cli.darwin-arm64.node");
|
||||||
|
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 1822:
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
module.exports = eval("require")("./cli.darwin-universal.node");
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 5921:
|
/***/ 5921:
|
||||||
@ -3185,6 +3214,14 @@ module.exports = eval("require")("@tauri-apps/cli-android-arm64");
|
|||||||
module.exports = eval("require")("@tauri-apps/cli-darwin-arm64");
|
module.exports = eval("require")("@tauri-apps/cli-darwin-arm64");
|
||||||
|
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 8636:
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
module.exports = eval("require")("@tauri-apps/cli-darwin-universal");
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 9968:
|
/***/ 9968:
|
||||||
@ -3217,14 +3254,6 @@ module.exports = eval("require")("@tauri-apps/cli-linux-arm64-gnu");
|
|||||||
module.exports = eval("require")("@tauri-apps/cli-linux-arm64-musl");
|
module.exports = eval("require")("@tauri-apps/cli-linux-arm64-musl");
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 2896:
|
|
||||||
/***/ ((module) => {
|
|
||||||
|
|
||||||
module.exports = eval("require")("@tauri-apps/cli-linux-x64-musl");
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 4523:
|
/***/ 4523:
|
||||||
|
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
3
dist/licenses.txt
generated
vendored
3
dist/licenses.txt
generated
vendored
@ -222,6 +222,9 @@ MIT
|
|||||||
@tauri-apps/cli-linux-x64-gnu
|
@tauri-apps/cli-linux-x64-gnu
|
||||||
MIT
|
MIT
|
||||||
|
|
||||||
|
@tauri-apps/cli-linux-x64-musl
|
||||||
|
MIT
|
||||||
|
|
||||||
@tauri-apps/cli-win32-x64-msvc
|
@tauri-apps/cli-win32-x64-msvc
|
||||||
MIT
|
MIT
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user