@zwa73/dev-utils 1.0.22 → 1.0.24

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.
@@ -31,7 +31,7 @@ exports.MIRROR_SOURCE = "https://registry.npmmirror.com/";
31
31
  /**npm官方源 */
32
32
  exports.OFFICIAL_SOURCE = "https://registry.npmjs.org/";
33
33
  /**data文件夹路径 */
34
- exports.DATA_PATH = path.join(__dirname, '..', 'data');
34
+ exports.DATA_PATH = path.join(__dirname, '..', '..', 'data');
35
35
  /**项目路径 */
36
36
  exports.PROJECT_PATH = process.cwd();
37
37
  /** 检测非浮点的整数类型 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zwa73/dev-utils",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "编译与调试工具",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -7,7 +7,7 @@ export const MIRROR_SOURCE = "https://registry.npmmirror.com/";
7
7
  /**npm官方源 */
8
8
  export const OFFICIAL_SOURCE = "https://registry.npmjs.org/";
9
9
  /**data文件夹路径 */
10
- export const DATA_PATH = path.join(__dirname,'..','data');
10
+ export const DATA_PATH = path.join(__dirname,'..','..','data');
11
11
  /**项目路径 */
12
12
  export const PROJECT_PATH = process.cwd();
13
13