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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -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.3";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pake-cli",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "๐Ÿคฑ๐Ÿป Turn any webpage into a desktop app with Rust. ๐Ÿคฑ๐Ÿป ๅพˆ็ฎ€ๅ•็š„็”จ Rust ๆ‰“ๅŒ…็ฝ‘้กต็”Ÿๆˆๅพˆๅฐ็š„ๆกŒ้ข Appใ€‚",
5
5
  "engines": {
6
6
  "node": ">=16.0.0"