pake-cli 1.2.3 โ 1.2.4
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
|
@@ -1796,7 +1796,7 @@ function handleOptions(options, url) {
|
|
|
1796
1796
|
|
|
1797
1797
|
function shellExec(command) {
|
|
1798
1798
|
return new Promise((resolve, reject) => {
|
|
1799
|
-
shelljs.exec(command, { async: true, silent: false }, (code) => {
|
|
1799
|
+
shelljs.exec(command, { async: true, silent: false, cwd: npmDirectory }, (code) => {
|
|
1800
1800
|
if (code === 0) {
|
|
1801
1801
|
resolve(0);
|
|
1802
1802
|
}
|
|
@@ -2170,7 +2170,7 @@ class BuilderFactory {
|
|
|
2170
2170
|
}
|
|
2171
2171
|
|
|
2172
2172
|
var name = "pake-cli";
|
|
2173
|
-
var version = "1.2.
|
|
2173
|
+
var version = "1.2.4";
|
|
2174
2174
|
var description = "๐คฑ๐ป Turn any webpage into a desktop app with Rust. ๐คฑ๐ป ๅพ็ฎๅ็็จ Rust ๆๅ
็ฝ้กต็ๆๅพๅฐ็ๆก้ข Appใ";
|
|
2175
2175
|
var engines = {
|
|
2176
2176
|
node: ">=16.0.0"
|
package/package.json
CHANGED