@oinone/cli 7.2.4 → 7.2.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.
Files changed (222) hide show
  1. package/README.md +100 -71
  2. package/README_zh-CN.md +100 -71
  3. package/bin/cli.js +48 -472
  4. package/bin/commands/cache.js +70 -0
  5. package/bin/commands/create/enterprise.js +81 -0
  6. package/bin/commands/create/index.js +128 -0
  7. package/bin/commands/create/project.js +81 -0
  8. package/bin/commands/create/prompts.js +126 -0
  9. package/bin/commands/create/static-resources.js +159 -0
  10. package/bin/commands/create/template.js +38 -0
  11. package/bin/commands/create/update-check.js +44 -0
  12. package/bin/commands/create/version-source.js +32 -0
  13. package/bin/commands/create.js +1 -0
  14. package/bin/commands/doctor.js +51 -0
  15. package/bin/config.js +54 -0
  16. package/bin/i18n.js +60 -0
  17. package/bin/locales/en-US.json +81 -0
  18. package/bin/locales/zh-CN.json +81 -0
  19. package/bin/utils/oinone-version.js +60 -0
  20. package/package.json +6 -3
  21. package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/vue.config.js +1 -1
  22. package/{template-7.2.0-community → template-7.2.0}/packages/ss-boot/vue.config.js +1 -1
  23. package/template-6.4.0-enterprise/.eslintignore +0 -5
  24. package/template-6.4.0-enterprise/.eslintrc.json +0 -72
  25. package/template-6.4.0-enterprise/_package.json +0 -47
  26. package/template-6.4.0-enterprise/npmrc +0 -3
  27. package/template-6.4.0-enterprise/packages/ss-admin-widget/package.json +0 -25
  28. package/template-6.4.0-enterprise/packages/ss-admin-widget/rollup.config.js +0 -73
  29. package/template-6.4.0-enterprise/packages/ss-admin-widget/tsconfig.json +0 -45
  30. package/template-6.4.0-enterprise/packages/ss-boot/package.json +0 -66
  31. package/template-6.4.0-enterprise/packages/ss-boot/src/main.ts +0 -69
  32. package/template-6.4.0-enterprise/packages/ss-boot/tsconfig.json +0 -44
  33. package/template-6.4.0-enterprise/packages/ss-boot/vue.config.js +0 -84
  34. package/template-6.4.0-enterprise/packages/ss-oinone/package.json +0 -29
  35. package/template-6.4.0-enterprise/packages/ss-oinone/rollup.config.js +0 -82
  36. package/template-6.4.0-enterprise/packages/ss-oinone/tsconfig.json +0 -42
  37. package/template-6.4.0-enterprise/packages/ss-project/package.json +0 -30
  38. package/template-6.4.0-enterprise/packages/ss-project/rollup.config.js +0 -83
  39. package/template-6.4.0-enterprise/packages/ss-project/tsconfig.json +0 -42
  40. package/template-6.4.0-enterprise/scripts/build/postbuild.js +0 -42
  41. package/template-6.4.0-enterprise/scripts/build/prebuild-only.js +0 -48
  42. package/template-7.2.0-community/.prettierrc.json +0 -8
  43. package/template-7.2.0-community/README.md +0 -59
  44. package/template-7.2.0-community/gitignore +0 -58
  45. package/template-7.2.0-community/lerna.json +0 -12
  46. package/template-7.2.0-community/packages/ss-admin-widget/index.ts +0 -1
  47. package/template-7.2.0-community/packages/ss-admin-widget/scripts/postpublish.js +0 -13
  48. package/template-7.2.0-community/packages/ss-admin-widget/scripts/prepublish-only.js +0 -24
  49. package/template-7.2.0-community/packages/ss-admin-widget/src/index.ts +0 -1
  50. package/template-7.2.0-community/packages/ss-admin-widget/src/shim-translate.d.ts +0 -10
  51. package/template-7.2.0-community/packages/ss-admin-widget/src/shim-vue.d.ts +0 -6
  52. package/template-7.2.0-community/packages/ss-boot/.env +0 -1
  53. package/template-7.2.0-community/packages/ss-boot/.env.example +0 -6
  54. package/template-7.2.0-community/packages/ss-boot/public/favicon.ico +0 -0
  55. package/template-7.2.0-community/packages/ss-boot/public/index.html +0 -83
  56. package/template-7.2.0-community/packages/ss-boot/public/manifest.js +0 -5
  57. package/template-7.2.0-community/packages/ss-boot/src/shim-translate.d.ts +0 -10
  58. package/template-7.2.0-community/packages/ss-boot/src/shim-vue.d.ts +0 -6
  59. package/template-7.2.0-community/packages/ss-oinone/index.ts +0 -1
  60. package/template-7.2.0-community/packages/ss-oinone/scripts/postpublish.js +0 -13
  61. package/template-7.2.0-community/packages/ss-oinone/scripts/prepublish-only.js +0 -24
  62. package/template-7.2.0-community/packages/ss-oinone/src/index.ts +0 -1
  63. package/template-7.2.0-community/packages/ss-oinone/src/shim-translate.d.ts +0 -10
  64. package/template-7.2.0-community/packages/ss-oinone/src/shim-vue.d.ts +0 -6
  65. package/template-7.2.0-community/packages/ss-project/index.ts +0 -1
  66. package/template-7.2.0-community/packages/ss-project/scripts/postpublish.js +0 -13
  67. package/template-7.2.0-community/packages/ss-project/scripts/prepublish-only.js +0 -24
  68. package/template-7.2.0-community/packages/ss-project/src/index.ts +0 -1
  69. package/template-7.2.0-community/packages/ss-project/src/shim-translate.d.ts +0 -10
  70. package/template-7.2.0-community/packages/ss-project/src/shim-vue.d.ts +0 -6
  71. package/template-7.2.0-community/pnpm-workspace.yaml +0 -3
  72. package/template-7.2.0-community/scripts/build/inset-tsconfig.js +0 -68
  73. package/template-7.2.0-community/scripts/build/package-name.js +0 -25
  74. package/template-7.2.0-community/scripts/clean.mjs +0 -22
  75. package/template-7.2.0-enterprise/.prettierrc.json +0 -8
  76. package/template-7.2.0-enterprise/README.md +0 -59
  77. package/template-7.2.0-enterprise/_package.json +0 -57
  78. package/template-7.2.0-enterprise/eslint.config.ts +0 -23
  79. package/template-7.2.0-enterprise/gitignore +0 -58
  80. package/template-7.2.0-enterprise/lerna.json +0 -12
  81. package/template-7.2.0-enterprise/npmrc +0 -3
  82. package/template-7.2.0-enterprise/packages/ss-admin-widget/index.ts +0 -1
  83. package/template-7.2.0-enterprise/packages/ss-admin-widget/package.json +0 -27
  84. package/template-7.2.0-enterprise/packages/ss-admin-widget/rollup.config.js +0 -14
  85. package/template-7.2.0-enterprise/packages/ss-admin-widget/scripts/postpublish.js +0 -13
  86. package/template-7.2.0-enterprise/packages/ss-admin-widget/scripts/prepublish-only.js +0 -24
  87. package/template-7.2.0-enterprise/packages/ss-admin-widget/src/index.ts +0 -1
  88. package/template-7.2.0-enterprise/packages/ss-admin-widget/src/shim-translate.d.ts +0 -10
  89. package/template-7.2.0-enterprise/packages/ss-admin-widget/src/shim-vue.d.ts +0 -6
  90. package/template-7.2.0-enterprise/packages/ss-admin-widget/tsconfig.json +0 -14
  91. package/template-7.2.0-enterprise/packages/ss-boot/.env +0 -1
  92. package/template-7.2.0-enterprise/packages/ss-boot/.env.example +0 -6
  93. package/template-7.2.0-enterprise/packages/ss-boot/package.json +0 -64
  94. package/template-7.2.0-enterprise/packages/ss-boot/public/favicon.ico +0 -0
  95. package/template-7.2.0-enterprise/packages/ss-boot/public/index.html +0 -83
  96. package/template-7.2.0-enterprise/packages/ss-boot/public/manifest.js +0 -5
  97. package/template-7.2.0-enterprise/packages/ss-boot/src/main.ts +0 -66
  98. package/template-7.2.0-enterprise/packages/ss-boot/src/shim-translate.d.ts +0 -10
  99. package/template-7.2.0-enterprise/packages/ss-boot/src/shim-vue.d.ts +0 -6
  100. package/template-7.2.0-enterprise/packages/ss-boot/tsconfig.json +0 -27
  101. package/template-7.2.0-enterprise/packages/ss-boot/vue.config.js +0 -87
  102. package/template-7.2.0-enterprise/packages/ss-oinone/index.ts +0 -1
  103. package/template-7.2.0-enterprise/packages/ss-oinone/package.json +0 -30
  104. package/template-7.2.0-enterprise/packages/ss-oinone/rollup.config.js +0 -14
  105. package/template-7.2.0-enterprise/packages/ss-oinone/scripts/postpublish.js +0 -13
  106. package/template-7.2.0-enterprise/packages/ss-oinone/scripts/prepublish-only.js +0 -24
  107. package/template-7.2.0-enterprise/packages/ss-oinone/src/index.ts +0 -1
  108. package/template-7.2.0-enterprise/packages/ss-oinone/src/shim-translate.d.ts +0 -10
  109. package/template-7.2.0-enterprise/packages/ss-oinone/src/shim-vue.d.ts +0 -6
  110. package/template-7.2.0-enterprise/packages/ss-oinone/tsconfig.json +0 -14
  111. package/template-7.2.0-enterprise/packages/ss-project/index.ts +0 -1
  112. package/template-7.2.0-enterprise/packages/ss-project/package.json +0 -30
  113. package/template-7.2.0-enterprise/packages/ss-project/rollup.config.js +0 -14
  114. package/template-7.2.0-enterprise/packages/ss-project/scripts/postpublish.js +0 -13
  115. package/template-7.2.0-enterprise/packages/ss-project/scripts/prepublish-only.js +0 -24
  116. package/template-7.2.0-enterprise/packages/ss-project/src/index.ts +0 -1
  117. package/template-7.2.0-enterprise/packages/ss-project/src/shim-translate.d.ts +0 -10
  118. package/template-7.2.0-enterprise/packages/ss-project/src/shim-vue.d.ts +0 -6
  119. package/template-7.2.0-enterprise/packages/ss-project/tsconfig.json +0 -14
  120. package/template-7.2.0-enterprise/pnpm-workspace.yaml +0 -3
  121. package/template-7.2.0-enterprise/scripts/build/inset-tsconfig.js +0 -68
  122. package/template-7.2.0-enterprise/scripts/build/package-name.js +0 -25
  123. package/template-7.2.0-enterprise/scripts/clean.mjs +0 -22
  124. /package/{template-6.4.0-community → template-6.4.0}/.eslintignore +0 -0
  125. /package/{template-6.4.0-community → template-6.4.0}/.eslintrc.json +0 -0
  126. /package/{template-6.4.0-community → template-6.4.0}/.prettierrc.json +0 -0
  127. /package/{template-6.4.0-community → template-6.4.0}/README.md +0 -0
  128. /package/{template-6.4.0-community → template-6.4.0}/_package.json +0 -0
  129. /package/{template-6.4.0-community → template-6.4.0}/gitignore +0 -0
  130. /package/{template-6.4.0-community → template-6.4.0}/lerna.json +0 -0
  131. /package/{template-6.4.0-community → template-6.4.0}/npmrc +0 -0
  132. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-admin-widget/index.ts +0 -0
  133. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-admin-widget/package.json +0 -0
  134. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-admin-widget/rollup.config.js +0 -0
  135. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-admin-widget/scripts/postpublish.js +0 -0
  136. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-admin-widget/scripts/prepublish-only.js +0 -0
  137. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-admin-widget/src/index.ts +0 -0
  138. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-admin-widget/src/shim-translate.d.ts +0 -0
  139. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-admin-widget/src/shim-vue.d.ts +0 -0
  140. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-admin-widget/tsconfig.json +0 -0
  141. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/.env +0 -0
  142. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/.env.example +0 -0
  143. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/package.json +0 -0
  144. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/public/favicon.ico +0 -0
  145. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/public/index.html +0 -0
  146. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/public/manifest.js +0 -0
  147. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/src/main.ts +0 -0
  148. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/src/shim-translate.d.ts +0 -0
  149. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/src/shim-vue.d.ts +0 -0
  150. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-boot/tsconfig.json +0 -0
  151. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-oinone/index.ts +0 -0
  152. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-oinone/package.json +0 -0
  153. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-oinone/rollup.config.js +0 -0
  154. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-oinone/scripts/postpublish.js +0 -0
  155. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-oinone/scripts/prepublish-only.js +0 -0
  156. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-oinone/src/index.ts +0 -0
  157. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-oinone/src/shim-translate.d.ts +0 -0
  158. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-oinone/src/shim-vue.d.ts +0 -0
  159. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-oinone/tsconfig.json +0 -0
  160. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-project/index.ts +0 -0
  161. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-project/package.json +0 -0
  162. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-project/rollup.config.js +0 -0
  163. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-project/scripts/postpublish.js +0 -0
  164. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-project/scripts/prepublish-only.js +0 -0
  165. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-project/src/index.ts +0 -0
  166. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-project/src/shim-translate.d.ts +0 -0
  167. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-project/src/shim-vue.d.ts +0 -0
  168. /package/{template-6.4.0-community → template-6.4.0}/packages/ss-project/tsconfig.json +0 -0
  169. /package/{template-6.4.0-community → template-6.4.0}/pnpm-workspace.yaml +0 -0
  170. /package/{template-6.4.0-community → template-6.4.0}/scripts/build/inset-tsconfig.js +0 -0
  171. /package/{template-6.4.0-community → template-6.4.0}/scripts/build/package-name.js +0 -0
  172. /package/{template-6.4.0-community → template-6.4.0}/scripts/build/postbuild.js +0 -0
  173. /package/{template-6.4.0-community → template-6.4.0}/scripts/build/prebuild-only.js +0 -0
  174. /package/{template-6.4.0-community → template-6.4.0}/scripts/clean.mjs +0 -0
  175. /package/{template-6.4.0-enterprise → template-7.2.0}/.prettierrc.json +0 -0
  176. /package/{template-6.4.0-enterprise → template-7.2.0}/README.md +0 -0
  177. /package/{template-7.2.0-community → template-7.2.0}/_package.json +0 -0
  178. /package/{template-7.2.0-community → template-7.2.0}/eslint.config.ts +0 -0
  179. /package/{template-6.4.0-enterprise → template-7.2.0}/gitignore +0 -0
  180. /package/{template-6.4.0-enterprise → template-7.2.0}/lerna.json +0 -0
  181. /package/{template-7.2.0-community → template-7.2.0}/npmrc +0 -0
  182. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-admin-widget/index.ts +0 -0
  183. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-admin-widget/package.json +0 -0
  184. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-admin-widget/rollup.config.js +0 -0
  185. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-admin-widget/scripts/postpublish.js +0 -0
  186. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-admin-widget/scripts/prepublish-only.js +0 -0
  187. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-admin-widget/src/index.ts +0 -0
  188. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-admin-widget/src/shim-translate.d.ts +0 -0
  189. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-admin-widget/src/shim-vue.d.ts +0 -0
  190. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-admin-widget/tsconfig.json +0 -0
  191. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-boot/.env +0 -0
  192. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-boot/.env.example +0 -0
  193. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-boot/package.json +0 -0
  194. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-boot/public/favicon.ico +0 -0
  195. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-boot/public/index.html +0 -0
  196. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-boot/public/manifest.js +0 -0
  197. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-boot/src/main.ts +0 -0
  198. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-boot/src/shim-translate.d.ts +0 -0
  199. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-boot/src/shim-vue.d.ts +0 -0
  200. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-boot/tsconfig.json +0 -0
  201. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-oinone/index.ts +0 -0
  202. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-oinone/package.json +0 -0
  203. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-oinone/rollup.config.js +0 -0
  204. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-oinone/scripts/postpublish.js +0 -0
  205. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-oinone/scripts/prepublish-only.js +0 -0
  206. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-oinone/src/index.ts +0 -0
  207. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-oinone/src/shim-translate.d.ts +0 -0
  208. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-oinone/src/shim-vue.d.ts +0 -0
  209. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-oinone/tsconfig.json +0 -0
  210. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-project/index.ts +0 -0
  211. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-project/package.json +0 -0
  212. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-project/rollup.config.js +0 -0
  213. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-project/scripts/postpublish.js +0 -0
  214. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-project/scripts/prepublish-only.js +0 -0
  215. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-project/src/index.ts +0 -0
  216. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-project/src/shim-translate.d.ts +0 -0
  217. /package/{template-6.4.0-enterprise → template-7.2.0}/packages/ss-project/src/shim-vue.d.ts +0 -0
  218. /package/{template-7.2.0-community → template-7.2.0}/packages/ss-project/tsconfig.json +0 -0
  219. /package/{template-6.4.0-enterprise → template-7.2.0}/pnpm-workspace.yaml +0 -0
  220. /package/{template-6.4.0-enterprise → template-7.2.0}/scripts/build/inset-tsconfig.js +0 -0
  221. /package/{template-6.4.0-enterprise → template-7.2.0}/scripts/build/package-name.js +0 -0
  222. /package/{template-6.4.0-enterprise → template-7.2.0}/scripts/clean.mjs +0 -0