neo-cmp-cli 1.5.0-beta.6 → 1.5.0-beta.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/README.md CHANGED
@@ -68,7 +68,7 @@ neo config init
68
68
  ```bash
69
69
  npm run preview
70
70
  npm run linkDebug
71
- npm run publish2oss
71
+ npm run pushCmp
72
72
  ```
73
73
 
74
74
  ## 常用命令说明
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo-cmp-cli",
3
- "version": "1.5.0-beta.6",
3
+ "version": "1.5.0-beta.8",
4
4
  "description": "前端脚手架:自定义组件开发工具,支持react 和 vue2.0技术栈。",
5
5
  "keywords": [
6
6
  "neo-cli",
@@ -16,7 +16,7 @@ const { getExternalsByNeoCommonModules } = require('../neo/neoRequire');
16
16
  // const { MFPlugins } = require('../neo/webpack.mf');
17
17
  const createCommonModulesCode = require('../cmpUtils/createCommonModulesCode');
18
18
  const createCmpProjectByTemplate = require('../projectUtils/createCmpProjectByTemplate');
19
- const createCmpByTemplate = require('../cmpUtils/createCmpByTemplate');
19
+ const createCmpByTemplate = require('../projectUtils/createCmpByTemplate');
20
20
 
21
21
  const getValue = (originValue, defaultValue) => {
22
22
  return originValue !== undefined ? originValue : defaultValue;
File without changes