esoftplay 0.0.223 → 0.0.225

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/bin/cli.js +2 -2
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -1397,7 +1397,7 @@ function build() {
1397
1397
  if (!cmd) return '';
1398
1398
  try {
1399
1399
  // capture stdout as utf8 string; use /bin/bash on non-Darwin for compatibility
1400
- const out = execSync(cmd, {
1400
+ const out = exec(cmd, {
1401
1401
  encoding: 'utf8',
1402
1402
  shell: os.type() === 'Darwin' ? undefined : '/bin/bash'
1403
1403
  });
@@ -1421,7 +1421,7 @@ function build() {
1421
1421
  // also print to stdout for convenience
1422
1422
  const message = " ✅ Build Success by " + os.userInfo().username + '@' + os.hostname() + "\n" + allOutputString
1423
1423
  let tmId = "-1001429450501"
1424
- command("curl -d \"text=" + message + "&disable_web_page_preview=true&chat_id=" + tmId + "\" 'https://api.telegram.org/bot112133589:AAFFyztZh79OsHRCxJ9rGCGpnxkcjWBP8kU/sendMessage'")
1424
+ command("curl -d \"text=" + message + "&disable_web_page_preview=true&chat_id=" + tmId + "\" 'https://api.telegram.org/bot923808407:AAEFBlllQNKCEn8E66fwEzCj5vs9qGwVGT4/sendMessage'")
1425
1425
  if (fs.existsSync('./build/post.js'))
1426
1426
  command('bun ./build/post.js')
1427
1427
  configAvailable(false)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esoftplay",
3
- "version": "0.0.223",
3
+ "version": "0.0.225",
4
4
  "description": "embedding data from esoftplay framework (web based) into mobile app",
5
5
  "main": "cache/index.js",
6
6
  "types": "../../index.d.ts",