neo-cmp-cli 1.8.6-beta.5 → 1.8.6-beta.6
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.
|
@@ -21,7 +21,7 @@ var _require2 = common.__require(),
|
|
|
21
21
|
/**
|
|
22
22
|
* 打开自定义组件项目
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
var openProject = /*#__PURE__*/function () {
|
|
25
25
|
var _ref = asyncToGenerator(/*#__PURE__*/index.mark(function _callee2(editorType, targetPath) {
|
|
26
26
|
var targetDir, stats, isMac, isWindows, isLinux, editorConfigs, editorName, spinner, _tryOpenEditor;
|
|
27
27
|
return index.wrap(function (_context2) {
|
|
@@ -162,7 +162,8 @@ module.exports = /*#__PURE__*/function () {
|
|
|
162
162
|
}
|
|
163
163
|
}, _callee2);
|
|
164
164
|
}));
|
|
165
|
-
return function (_x, _x2) {
|
|
165
|
+
return function openProject(_x, _x2) {
|
|
166
166
|
return _ref.apply(this, arguments);
|
|
167
167
|
};
|
|
168
168
|
}();
|
|
169
|
+
module.exports = openProject;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "neo-cmp-cli",
|
|
3
|
-
"version": "1.8.6-beta.
|
|
3
|
+
"version": "1.8.6-beta.6",
|
|
4
4
|
"description": "Neo 自定义组件开发工具,支持react 和 vue2.0技术栈。",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"neo-cli",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"author": "wibetter",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"bin": {
|
|
12
|
-
"neo": "./bin/neo.js"
|
|
12
|
+
"neo": "./bin/neo.js",
|
|
13
|
+
"build2esm": "neo build2esm"
|
|
13
14
|
},
|
|
14
15
|
"main": "dist/main.js",
|
|
15
16
|
"scripts": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const { execSync } = require('child_process');
|
|
2
2
|
|
|
3
3
|
// 所有需要废弃的版本
|
|
4
|
-
const versionsToDeprecate = ["1.8.6-beta.1", "1.8.6-beta.2", "1.8.6-beta.3"];
|
|
4
|
+
const versionsToDeprecate = ["1.8.6-beta.1", "1.8.6-beta.2", "1.8.6-beta.3", "1.8.6-beta.5"];
|
|
5
5
|
|
|
6
6
|
const packageName = 'neo-cmp-cli';
|
|
7
7
|
const deprecateMessage = '此版本为开发中版本(存在 bug),请升级到最新版本。';
|