@coze-arch/cli 0.1.4-alpha.b94eab → 0.1.4-alpha.fb90f3

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.
Files changed (55) hide show
  1. package/lib/__templates__/expo/.coze +3 -0
  2. package/lib/__templates__/expo/.cozeproj/scripts/dev_build.ps1 +10 -0
  3. package/lib/__templates__/expo/.cozeproj/scripts/dev_build.sh +3 -3
  4. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.ps1 +74 -0
  5. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +2 -0
  6. package/lib/__templates__/expo/.cozeproj/scripts/prepare-node-modules.sh +149 -0
  7. package/lib/__templates__/expo/.cozeproj/scripts/prod_build.sh +3 -3
  8. package/lib/__templates__/expo/.cozeproj/scripts/validate.ps1 +7 -0
  9. package/lib/__templates__/expo/client/components/Screen.tsx +65 -25
  10. package/lib/__templates__/expo/client/heroui/components/toast/toast.tsx +6 -2
  11. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-controllable-state.ts +1 -1
  12. package/lib/__templates__/expo/pnpm-lock.yaml +5 -5
  13. package/lib/__templates__/expo/server/package.json +1 -1
  14. package/lib/__templates__/nextjs/eslint.config.mjs +11 -5
  15. package/lib/__templates__/nextjs/next.config.ts +10 -0
  16. package/lib/__templates__/nextjs/package.json +3 -6
  17. package/lib/__templates__/nextjs/pnpm-lock.yaml +19 -950
  18. package/lib/__templates__/nextjs/scripts/build.ps1 +1 -1
  19. package/lib/__templates__/nextjs/scripts/build.sh +3 -2
  20. package/lib/__templates__/nextjs/scripts/dev.sh +6 -3
  21. package/lib/__templates__/nextjs/scripts/prepare-next-output.sh +62 -0
  22. package/lib/__templates__/nextjs/scripts/prepare-node-modules.sh +149 -0
  23. package/lib/__templates__/nextjs/scripts/prepare.sh +1 -4
  24. package/lib/__templates__/nextjs/src/app/layout.tsx +0 -4
  25. package/lib/__templates__/nextjs/src/server.ts +1 -1
  26. package/lib/__templates__/nextjs/template.config.js +0 -59
  27. package/lib/__templates__/nuxt-vue/package.json +1 -1
  28. package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +5 -5
  29. package/lib/__templates__/nuxt-vue/scripts/build.sh +1 -1
  30. package/lib/__templates__/nuxt-vue/scripts/dev.sh +2 -0
  31. package/lib/__templates__/nuxt-vue/scripts/prepare-node-modules.sh +149 -0
  32. package/lib/__templates__/nuxt-vue/scripts/prepare.sh +1 -4
  33. package/lib/__templates__/pi-agent/package.json +1 -1
  34. package/lib/__templates__/pi-agent/pnpm-lock.yaml +5 -5
  35. package/lib/__templates__/taro/.coze +4 -0
  36. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +3 -2
  37. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.ps1 +3 -0
  38. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +3 -0
  39. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.ps1 +62 -0
  40. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +3 -1
  41. package/lib/__templates__/taro/.cozeproj/scripts/pack.ps1 +7 -0
  42. package/lib/__templates__/taro/.cozeproj/scripts/prepare-node-modules.sh +149 -0
  43. package/lib/__templates__/taro/.cozeproj/scripts/validate.ps1 +7 -0
  44. package/lib/__templates__/taro/pnpm-lock.yaml +5 -5
  45. package/lib/__templates__/taro/server/package.json +1 -1
  46. package/lib/__templates__/vite/package.json +1 -1
  47. package/lib/__templates__/vite/pnpm-lock.yaml +5 -5
  48. package/lib/__templates__/vite/scripts/build.sh +1 -1
  49. package/lib/__templates__/vite/scripts/dev.sh +2 -0
  50. package/lib/__templates__/vite/scripts/prepare-node-modules.sh +149 -0
  51. package/lib/__templates__/vite/scripts/prepare.sh +1 -4
  52. package/lib/__templates__/vite/template.config.js +0 -59
  53. package/lib/cli.js +35 -12
  54. package/package.json +1 -1
  55. package/lib/__templates__/nextjs/.babelrc +0 -15
package/lib/cli.js CHANGED
@@ -2114,7 +2114,7 @@ const EventBuilder = {
2114
2114
  };
2115
2115
 
2116
2116
  var name = "@coze-arch/cli";
2117
- var version = "0.1.4-alpha.b94eab";
2117
+ var version = "0.1.4-alpha.fb90f3";
2118
2118
  var description = "coze coding devtools cli";
2119
2119
  var license = "MIT";
2120
2120
  var author = "fanwenjie.fe@bytedance.com";
@@ -9179,6 +9179,7 @@ const shouldRenderFile = (filePath) => {
9179
9179
  '.prettierrc',
9180
9180
  '.babelrc',
9181
9181
  '.sh',
9182
+ '.ps1',
9182
9183
  ]);
9183
9184
 
9184
9185
  const ext = path.extname(filePath).toLowerCase();
@@ -9882,18 +9883,38 @@ const execute = async (
9882
9883
  };
9883
9884
 
9884
9885
  function _nullishCoalesce$2(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }
9886
+ const getDependencyPreparationCommand = (projectPath) => {
9887
+ if (fs.existsSync(path.join(projectPath, 'scripts', 'prepare.sh'))) {
9888
+ return 'bash ./scripts/prepare.sh';
9889
+ }
9890
+ if (
9891
+ fs.existsSync(
9892
+ path.join(
9893
+ projectPath,
9894
+ '.cozeproj',
9895
+ 'scripts',
9896
+ 'prepare-node-modules.sh',
9897
+ ),
9898
+ )
9899
+ ) {
9900
+ return 'bash ./.cozeproj/scripts/prepare-node-modules.sh';
9901
+ }
9902
+ return 'pnpm install';
9903
+ };
9904
+
9885
9905
  /**
9886
- * 运行 pnpm install
9906
+ * 优先通过模板提供的 wrapper 准备依赖。
9887
9907
  */
9888
- const runPnpmInstall = (projectPath) => {
9889
- logger.info('\nInstalling dependencies with pnpm...');
9908
+ const prepareDependencies = (projectPath) => {
9909
+ logger.info('\nPreparing dependencies with the project wrapper...');
9890
9910
 
9891
- const result = shelljs.exec('pnpm install', {
9911
+ const command = getDependencyPreparationCommand(projectPath);
9912
+ const result = shelljs.exec(command, {
9892
9913
  cwd: projectPath,
9893
9914
  silent: true,
9894
9915
  });
9895
9916
 
9896
- // verbose 模式下输出 pnpm install 的详细日志
9917
+ // verbose 模式下输出依赖准备命令的详细日志
9897
9918
  if (result.stdout) {
9898
9919
  logger.verbose(result.stdout);
9899
9920
  }
@@ -9902,11 +9923,11 @@ const runPnpmInstall = (projectPath) => {
9902
9923
  }
9903
9924
 
9904
9925
  if (result.code === 0) {
9905
- logger.success('Dependencies installed successfully!');
9926
+ logger.success('Dependencies prepared successfully!');
9906
9927
  } else {
9907
9928
  // 仅在失败时输出详细信息以便排查
9908
9929
  const errorMessage = [
9909
- `pnpm install failed with exit code ${result.code}`,
9930
+ `${command} failed with exit code ${result.code}`,
9910
9931
  result.stderr ? `\nStderr:\n${result.stderr}` : '',
9911
9932
  result.stdout ? `\nStdout:\n${result.stdout}` : '',
9912
9933
  ]
@@ -10131,7 +10152,7 @@ const installDependenciesStep = ctx => {
10131
10152
  try {
10132
10153
  if (!skipInstall) {
10133
10154
  if (ctx.hasPackageJson) {
10134
- runPnpmInstall(ctx.absoluteOutputPath);
10155
+ prepareDependencies(ctx.absoluteOutputPath);
10135
10156
  ctx.timer.logPhase('Dependencies installation');
10136
10157
  } else {
10137
10158
  logger.info(
@@ -10140,7 +10161,7 @@ const installDependenciesStep = ctx => {
10140
10161
  }
10141
10162
  }
10142
10163
  } catch (error) {
10143
- // 捕获 pnpm install 失败的情况
10164
+ // 捕获依赖准备失败的情况
10144
10165
  installSuccess = false;
10145
10166
  installErrorCode = 1;
10146
10167
  installErrorType = 'execution_failed';
@@ -10227,7 +10248,9 @@ const startDevServerStep = ctx => {
10227
10248
  logger.info('\nNext steps:');
10228
10249
  logger.info(` cd ${ctx.outputPath}`);
10229
10250
  if (skipInstall && ctx.hasPackageJson) {
10230
- logger.info(' pnpm install');
10251
+ logger.info(
10252
+ ` ${getDependencyPreparationCommand(ctx.absoluteOutputPath)}`,
10253
+ );
10231
10254
  }
10232
10255
  if (skipGit) {
10233
10256
  logger.info(' git init');
@@ -10339,7 +10362,7 @@ const registerCommand$1 = program => {
10339
10362
  .argument('[directory]', 'Output directory for the project')
10340
10363
  .requiredOption('-t, --template <name>', 'Template name')
10341
10364
  .option('-o, --output <path>', 'Output directory', process.cwd())
10342
- .option('--skip-install', 'Skip automatic pnpm install', false)
10365
+ .option('--skip-install', 'Skip automatic dependency preparation', false)
10343
10366
  .option('--skip-git', 'Skip automatic git initialization', false)
10344
10367
  .option(
10345
10368
  '--skip-commit',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coze-arch/cli",
3
- "version": "0.1.4-alpha.b94eab",
3
+ "version": "0.1.4-alpha.fb90f3",
4
4
  "private": false,
5
5
  "description": "coze coding devtools cli",
6
6
  "license": "MIT",
@@ -1,15 +0,0 @@
1
- {
2
- "presets": [
3
- [
4
- "next/babel",
5
- {
6
- "preset-react": {
7
- "development": true
8
- }
9
- }
10
- ]
11
- ],
12
- "plugins": [
13
- "@react-dev-inspector/babel-plugin"
14
- ]
15
- }