@mindbase/node-tools 1.3.7 → 1.3.8

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": "@mindbase/node-tools",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "Node.js 开发工具集合:清理 node_modules、查看 Git 日志、发布包",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -43,7 +43,7 @@ class NpmAdapter extends BaseAdapter {
43
43
  } finally {
44
44
  // 清理临时 .npmrc
45
45
  if (existsSync(npmrcPath)) {
46
- // unlinkSync(npmrcPath);
46
+ unlinkSync(npmrcPath);
47
47
  }
48
48
  }
49
49
  }