pake-cli 2.1.11 โ 2.1.12
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 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -20,7 +20,7 @@ import isUrl from 'is-url';
|
|
|
20
20
|
import fs from 'fs';
|
|
21
21
|
|
|
22
22
|
var name = "pake-cli";
|
|
23
|
-
var version = "2.1.
|
|
23
|
+
var version = "2.1.12";
|
|
24
24
|
var description = "๐คฑ๐ป Turn any webpage into a desktop app with Rust. ๐คฑ๐ป ๅพ็ฎๅ็็จ Rust ๆๅ
็ฝ้กต็ๆๅพๅฐ็ๆก้ข Appใ";
|
|
25
25
|
var engines = {
|
|
26
26
|
node: ">=16.0.0"
|
|
@@ -662,7 +662,7 @@ class BaseBuilder {
|
|
|
662
662
|
// Build app
|
|
663
663
|
const spinner = getSpinner('Building app...');
|
|
664
664
|
setTimeout(() => spinner.stop(), 3000);
|
|
665
|
-
await shellExec(`cd ${npmDirectory} && ${this.getBuildCommand()}`);
|
|
665
|
+
await shellExec(`cd "${npmDirectory}" && ${this.getBuildCommand()}`);
|
|
666
666
|
// Copy app
|
|
667
667
|
const fileName = this.getFileName();
|
|
668
668
|
const fileType = this.getFileType(target);
|
package/package.json
CHANGED