easy-soft-develop 2.2.19 → 2.2.22

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/bin/cli.js CHANGED
@@ -187,6 +187,7 @@ program
187
187
  .command('update-project-from-repository')
188
188
  .description('update from master template repository')
189
189
  .option('--projectPath <string>', 'target project path that will be updated')
190
+ .option('--targetPath <string>', 'target path that will be updated')
190
191
  .option(
191
192
  '--agent <string>',
192
193
  'web agent for remote , if it has value, will use the agent to access remote url',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easy-soft-develop",
3
- "version": "2.2.19",
3
+ "version": "2.2.22",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/kityandhero/easy-soft-develop#readme",
6
6
  "bugs": {
@@ -61,6 +61,7 @@ function handlePackage({
61
61
  const projectPathAdjust = resolvePath(projectPath);
62
62
 
63
63
  promptInfo(`target project path: "${projectPathAdjust}".`);
64
+ promptInfo(`target path: "${targetPath}".`);
64
65
 
65
66
  const sourceMainPath = `./temp/source/${sourcePath}`;
66
67
  const targetMainPath = `${projectPath}/${targetPath}`;