gf-packages-cli 1.0.1 → 1.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gf-packages-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "bin": {
5
5
  "gf-packages-cli": "./bin/cli.js"
6
6
  },
@@ -1,7 +1,7 @@
1
1
  const { Command } = require('commander');
2
2
  const chalk = require('chalk').default;
3
- const { getDeviceList, selectDevice, runAdbSync } = require('./lib/tools/adb.js');
4
- const { getThirdPartyPackages, selectPackages } = require('./lib/common/appCommon.js');
3
+ const { getDeviceList, selectDevice, runAdbSync } = require('../lib/tools/adb.js');
4
+ const { getThirdPartyPackages, selectPackages } = require('../lib/common/appCommon.js');
5
5
 
6
6
 
7
7
 
@@ -6,8 +6,8 @@ const fs = require('fs');
6
6
  const path = require('path');
7
7
  const os = require('os');
8
8
  const AdmZip = require('adm-zip');
9
- const { getDeviceList, selectDevice, runAdbSync } = require('./lib/tools/adb.js');
10
- const { getThirdPartyPackages, selectPackages } = require('./lib/common/appCommon.js');
9
+ const { getDeviceList, selectDevice, runAdbSync } = require('../lib/tools/adb.js');
10
+ const { getThirdPartyPackages, selectPackages } = require('../lib/common/appCommon.js');
11
11
  const REMOTE_APK_SUFFIX = '.apk';
12
12
 
13
13
  // ===================== ADB 工具函数 =====================