@choochmeque/tauri-windows-bundle 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -1
- package/dist/index.js +2 -1
- package/dist/utils/exec.d.ts +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -695,7 +695,7 @@ function isVersionSufficient(version, minVersion) {
|
|
|
695
695
|
return false;
|
|
696
696
|
return patch >= minPatch;
|
|
697
697
|
}
|
|
698
|
-
const MIN_MSIXBUNDLE_CLI_VERSION = '1.0.
|
|
698
|
+
const MIN_MSIXBUNDLE_CLI_VERSION = '1.0.2';
|
|
699
699
|
async function promptInstall(message) {
|
|
700
700
|
const rl = readline.createInterface({
|
|
701
701
|
input: process.stdin,
|
|
@@ -856,6 +856,7 @@ async function build(options) {
|
|
|
856
856
|
console.log('\nCreating MSIX package...');
|
|
857
857
|
const outDir = path.join(projectRoot, 'src-tauri', 'target', 'msix');
|
|
858
858
|
const args = [
|
|
859
|
+
'--force',
|
|
859
860
|
'--out-dir',
|
|
860
861
|
outDir,
|
|
861
862
|
...appxDirs.flatMap(({ arch, dir }) => [`--dir-${arch}`, dir]),
|
package/dist/index.js
CHANGED
|
@@ -693,7 +693,7 @@ function isVersionSufficient(version, minVersion) {
|
|
|
693
693
|
return false;
|
|
694
694
|
return patch >= minPatch;
|
|
695
695
|
}
|
|
696
|
-
const MIN_MSIXBUNDLE_CLI_VERSION = '1.0.
|
|
696
|
+
const MIN_MSIXBUNDLE_CLI_VERSION = '1.0.2';
|
|
697
697
|
async function promptInstall(message) {
|
|
698
698
|
const rl = readline.createInterface({
|
|
699
699
|
input: process.stdin,
|
|
@@ -854,6 +854,7 @@ async function build(options) {
|
|
|
854
854
|
console.log('\nCreating MSIX package...');
|
|
855
855
|
const outDir = path.join(projectRoot, 'src-tauri', 'target', 'msix');
|
|
856
856
|
const args = [
|
|
857
|
+
'--force',
|
|
857
858
|
'--out-dir',
|
|
858
859
|
outDir,
|
|
859
860
|
...appxDirs.flatMap(({ arch, dir }) => [`--dir-${arch}`, dir]),
|
package/dist/utils/exec.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare function execAsync(command: string, options?: {
|
|
|
16
16
|
export declare function isMsixbundleCliInstalled(): Promise<boolean>;
|
|
17
17
|
export declare function getMsixbundleCliVersion(): Promise<string | null>;
|
|
18
18
|
export declare function isVersionSufficient(version: string, minVersion: string): boolean;
|
|
19
|
-
export declare const MIN_MSIXBUNDLE_CLI_VERSION = "1.0.
|
|
19
|
+
export declare const MIN_MSIXBUNDLE_CLI_VERSION = "1.0.2";
|
|
20
20
|
export declare function promptInstall(message: string): Promise<boolean>;
|
|
21
21
|
export interface ExecWithProgressOptions {
|
|
22
22
|
cwd?: string;
|