@modern-js/utils 2.13.4 → 2.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (443) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/dist/{alias.js → cjs/alias.js} +4 -15
  3. package/dist/{analyzeProject.js → cjs/analyzeProject.js} +5 -25
  4. package/dist/{babel.js → cjs/babel.js} +9 -16
  5. package/dist/{compatRequire.js → cjs/compatRequire.js} +4 -17
  6. package/dist/{constants.js → cjs/constants.js} +7 -13
  7. package/dist/cjs/emptyDir.js +32 -0
  8. package/dist/{getEntryOptions.js → cjs/getEntryOptions.js} +1 -15
  9. package/dist/{getPackageManager.js → cjs/getPackageManager.js} +19 -41
  10. package/dist/{getPort.js → cjs/getPort.js} +4 -24
  11. package/dist/{getServerConfig.js → cjs/getServerConfig.js} +2 -22
  12. package/dist/{is → cjs/is}/index.js +3 -2
  13. package/dist/{logger.js → cjs/logger.js} +5 -16
  14. package/dist/{monorepo.js → cjs/monorepo.js} +4 -15
  15. package/dist/cjs/nodeEnv.js +55 -0
  16. package/dist/{path.js → cjs/path.js} +1 -1
  17. package/dist/{pathSerializer.js → cjs/pathSerializer.js} +1 -1
  18. package/dist/{prettyInstructions.js → cjs/prettyInstructions.js} +26 -8
  19. package/dist/{react.js → cjs/react.js} +4 -15
  20. package/dist/cjs/runtime/index.js +17 -0
  21. package/dist/cjs/runtime/parsed.js +39 -0
  22. package/dist/{runtimeExports.js → cjs/runtimeExports.js} +1 -1
  23. package/dist/{universal → cjs/universal}/nestedRoutes.js +4 -21
  24. package/dist/cjs/version.js +59 -0
  25. package/dist/{watch.js → cjs/watch.js} +9 -29
  26. package/dist/esm/FileSizeReporter.js +133 -0
  27. package/dist/esm/alias.js +61 -0
  28. package/dist/esm/analyzeProject.js +17 -0
  29. package/dist/esm/applyOptionsChain.js +35 -0
  30. package/dist/esm/babel.js +105 -0
  31. package/dist/esm/chainId.js +173 -0
  32. package/dist/esm/clearConsole.js +8 -0
  33. package/dist/esm/commands.js +22 -0
  34. package/dist/esm/compatRequire.js +42 -0
  35. package/dist/esm/compiled.js +77 -0
  36. package/dist/esm/constants.js +260 -0
  37. package/dist/esm/debug.js +5 -0
  38. package/dist/esm/emptyDir.js +9 -0
  39. package/dist/esm/ensureAbsolutePath.js +5 -0
  40. package/dist/esm/ensureArray.js +9 -0
  41. package/dist/esm/findExists.js +12 -0
  42. package/dist/esm/generateMetaTags.js +38 -0
  43. package/dist/esm/getBrowserslist.js +7 -0
  44. package/dist/esm/getCoreJsVersion.js +13 -0
  45. package/dist/esm/getEntryOptions.js +17 -0
  46. package/dist/esm/getPackageManager.js +32 -0
  47. package/dist/esm/getPort.js +59 -0
  48. package/dist/esm/getServerConfig.js +14 -0
  49. package/dist/esm/getTargetDir.js +8 -0
  50. package/dist/esm/import.js +9 -0
  51. package/dist/esm/index.js +44 -0
  52. package/dist/esm/is/index.js +72 -0
  53. package/dist/esm/is/nodeEnv.js +12 -0
  54. package/dist/esm/is/platform.js +6 -0
  55. package/dist/esm/is/type.js +34 -0
  56. package/dist/esm/logger.js +100 -0
  57. package/dist/esm/monorepo.js +87 -0
  58. package/dist/esm/nodeEnv.js +30 -0
  59. package/dist/esm/path.js +50 -0
  60. package/dist/esm/pathSerializer.js +46 -0
  61. package/dist/esm/plugin.js +23 -0
  62. package/dist/esm/prettyInstructions.js +95 -0
  63. package/dist/esm/printBuildError.js +34 -0
  64. package/dist/esm/react.js +20 -0
  65. package/dist/esm/readTsConfig.js +13 -0
  66. package/dist/esm/removeSlash.js +8 -0
  67. package/dist/esm/resolve.js +38 -0
  68. package/dist/esm/routes.js +24 -0
  69. package/dist/esm/runtime/index.js +1 -0
  70. package/dist/esm/runtime/parsed.js +16 -0
  71. package/dist/esm/runtimeExports.js +40 -0
  72. package/dist/esm/ssr.js +6 -0
  73. package/dist/esm/storage.js +42 -0
  74. package/dist/esm/testUtils.js +15 -0
  75. package/dist/esm/types.js +0 -0
  76. package/dist/esm/universal/constants.js +6 -0
  77. package/dist/esm/universal/formatWebpack.js +77 -0
  78. package/dist/esm/universal/nestedRoutes.js +93 -0
  79. package/dist/esm/universal/remixRouter.js +1 -0
  80. package/dist/esm/universal/serialize.js +7 -0
  81. package/dist/esm/version.js +25 -0
  82. package/dist/esm/wait.js +6 -0
  83. package/dist/esm/watch.js +36 -0
  84. package/dist/{constants.d.ts → types/constants.d.ts} +6 -2
  85. package/dist/{prettyInstructions.d.ts → types/prettyInstructions.d.ts} +4 -1
  86. package/dist/types/runtime/index.d.ts +1 -0
  87. package/dist/types/runtime/parsed.d.ts +1 -0
  88. package/package.json +118 -63
  89. package/dist/emptyDir.js +0 -52
  90. package/dist/nodeEnv.js +0 -81
  91. package/dist/version.js +0 -92
  92. /package/dist/{FileSizeReporter.js → cjs/FileSizeReporter.js} +0 -0
  93. /package/dist/{applyOptionsChain.js → cjs/applyOptionsChain.js} +0 -0
  94. /package/dist/{chainId.js → cjs/chainId.js} +0 -0
  95. /package/dist/{clearConsole.js → cjs/clearConsole.js} +0 -0
  96. /package/dist/{commands.js → cjs/commands.js} +0 -0
  97. /package/dist/{compiled.js → cjs/compiled.js} +0 -0
  98. /package/dist/{debug.js → cjs/debug.js} +0 -0
  99. /package/dist/{ensureAbsolutePath.js → cjs/ensureAbsolutePath.js} +0 -0
  100. /package/dist/{ensureArray.js → cjs/ensureArray.js} +0 -0
  101. /package/dist/{findExists.js → cjs/findExists.js} +0 -0
  102. /package/dist/{generateMetaTags.js → cjs/generateMetaTags.js} +0 -0
  103. /package/dist/{getBrowserslist.js → cjs/getBrowserslist.js} +0 -0
  104. /package/dist/{getCoreJsVersion.js → cjs/getCoreJsVersion.js} +0 -0
  105. /package/dist/{getTargetDir.js → cjs/getTargetDir.js} +0 -0
  106. /package/dist/{import.js → cjs/import.js} +0 -0
  107. /package/dist/{index.js → cjs/index.js} +0 -0
  108. /package/dist/{is → cjs/is}/nodeEnv.js +0 -0
  109. /package/dist/{is → cjs/is}/platform.js +0 -0
  110. /package/dist/{is → cjs/is}/type.js +0 -0
  111. /package/dist/{plugin.js → cjs/plugin.js} +0 -0
  112. /package/dist/{printBuildError.js → cjs/printBuildError.js} +0 -0
  113. /package/dist/{readTsConfig.js → cjs/readTsConfig.js} +0 -0
  114. /package/dist/{removeSlash.js → cjs/removeSlash.js} +0 -0
  115. /package/dist/{resolve.js → cjs/resolve.js} +0 -0
  116. /package/dist/{routes.js → cjs/routes.js} +0 -0
  117. /package/dist/{ssr.js → cjs/ssr.js} +0 -0
  118. /package/dist/{storage.js → cjs/storage.js} +0 -0
  119. /package/dist/{testUtils.js → cjs/testUtils.js} +0 -0
  120. /package/dist/{types.js → cjs/types.js} +0 -0
  121. /package/dist/{universal → cjs/universal}/constants.js +0 -0
  122. /package/dist/{universal → cjs/universal}/formatWebpack.js +0 -0
  123. /package/dist/{universal → cjs/universal}/remixRouter.js +0 -0
  124. /package/dist/{universal → cjs/universal}/serialize.js +0 -0
  125. /package/dist/{wait.js → cjs/wait.js} +0 -0
  126. /package/{compiled → dist/compiled}/address/index.js +0 -0
  127. /package/{compiled → dist/compiled}/address/lib/address.d.ts +0 -0
  128. /package/{compiled → dist/compiled}/address/package.json +0 -0
  129. /package/{compiled → dist/compiled}/ajv/codegen.js +0 -0
  130. /package/{compiled → dist/compiled}/ajv/index.js +0 -0
  131. /package/{compiled → dist/compiled}/ajv/license +0 -0
  132. /package/{compiled → dist/compiled}/ajv/package.json +0 -0
  133. /package/{compiled → dist/compiled}/ajv/types/ajv.d.ts +0 -0
  134. /package/{compiled → dist/compiled}/ajv/types/compile/codegen/code.d.ts +0 -0
  135. /package/{compiled → dist/compiled}/ajv/types/compile/codegen/index.d.ts +0 -0
  136. /package/{compiled → dist/compiled}/ajv/types/compile/codegen/scope.d.ts +0 -0
  137. /package/{compiled → dist/compiled}/ajv/types/compile/errors.d.ts +0 -0
  138. /package/{compiled → dist/compiled}/ajv/types/compile/index.d.ts +0 -0
  139. /package/{compiled → dist/compiled}/ajv/types/compile/ref_error.d.ts +0 -0
  140. /package/{compiled → dist/compiled}/ajv/types/compile/resolve.d.ts +0 -0
  141. /package/{compiled → dist/compiled}/ajv/types/compile/rules.d.ts +0 -0
  142. /package/{compiled → dist/compiled}/ajv/types/compile/util.d.ts +0 -0
  143. /package/{compiled → dist/compiled}/ajv/types/compile/validate/index.d.ts +0 -0
  144. /package/{compiled → dist/compiled}/ajv/types/compile/validate/subschema.d.ts +0 -0
  145. /package/{compiled → dist/compiled}/ajv/types/core.d.ts +0 -0
  146. /package/{compiled → dist/compiled}/ajv/types/runtime/validation_error.d.ts +0 -0
  147. /package/{compiled → dist/compiled}/ajv/types/types/index.d.ts +0 -0
  148. /package/{compiled → dist/compiled}/ajv/types/types/json-schema.d.ts +0 -0
  149. /package/{compiled → dist/compiled}/ajv/types/types/jtd-schema.d.ts +0 -0
  150. /package/{compiled → dist/compiled}/ajv/types/vocabularies/errors.d.ts +0 -0
  151. /package/{compiled → dist/compiled}/ajv/uri-js.d.ts +0 -0
  152. /package/{compiled → dist/compiled}/ajv-keywords/index.d.ts +0 -0
  153. /package/{compiled → dist/compiled}/ajv-keywords/index.js +0 -0
  154. /package/{compiled → dist/compiled}/ajv-keywords/license +0 -0
  155. /package/{compiled → dist/compiled}/ajv-keywords/package.json +0 -0
  156. /package/{compiled → dist/compiled}/better-ajv-errors/index.d.ts +0 -0
  157. /package/{compiled → dist/compiled}/better-ajv-errors/index.js +0 -0
  158. /package/{compiled → dist/compiled}/better-ajv-errors/license +0 -0
  159. /package/{compiled → dist/compiled}/better-ajv-errors/package.json +0 -0
  160. /package/{compiled → dist/compiled}/browserslist/index.d.ts +0 -0
  161. /package/{compiled → dist/compiled}/browserslist/index.js +0 -0
  162. /package/{compiled → dist/compiled}/browserslist/license +0 -0
  163. /package/{compiled → dist/compiled}/browserslist/package.json +0 -0
  164. /package/{compiled → dist/compiled}/chalk/index.d.ts +0 -0
  165. /package/{compiled → dist/compiled}/chalk/index.js +0 -0
  166. /package/{compiled → dist/compiled}/chalk/license +0 -0
  167. /package/{compiled → dist/compiled}/chalk/package.json +0 -0
  168. /package/{compiled → dist/compiled}/chokidar/anymatch/index.d.ts +0 -0
  169. /package/{compiled → dist/compiled}/chokidar/fsevents.node +0 -0
  170. /package/{compiled → dist/compiled}/chokidar/index.js +0 -0
  171. /package/{compiled → dist/compiled}/chokidar/license +0 -0
  172. /package/{compiled → dist/compiled}/chokidar/package.json +0 -0
  173. /package/{compiled → dist/compiled}/chokidar/types/index.d.ts +0 -0
  174. /package/{compiled → dist/compiled}/commander/index.js +0 -0
  175. /package/{compiled → dist/compiled}/commander/license +0 -0
  176. /package/{compiled → dist/compiled}/commander/package.json +0 -0
  177. /package/{compiled → dist/compiled}/commander/typings/index.d.ts +0 -0
  178. /package/{compiled → dist/compiled}/debug/index.d.ts +0 -0
  179. /package/{compiled → dist/compiled}/debug/index.js +0 -0
  180. /package/{compiled → dist/compiled}/debug/license +0 -0
  181. /package/{compiled → dist/compiled}/debug/ms/index.d.ts +0 -0
  182. /package/{compiled → dist/compiled}/debug/package.json +0 -0
  183. /package/{compiled → dist/compiled}/dotenv/index.js +0 -0
  184. /package/{compiled → dist/compiled}/dotenv/license +0 -0
  185. /package/{compiled → dist/compiled}/dotenv/package.json +0 -0
  186. /package/{compiled → dist/compiled}/dotenv/types/index.d.ts +0 -0
  187. /package/{compiled → dist/compiled}/dotenv-expand/index.d.ts +0 -0
  188. /package/{compiled → dist/compiled}/dotenv-expand/index.js +0 -0
  189. /package/{compiled → dist/compiled}/dotenv-expand/license +0 -0
  190. /package/{compiled → dist/compiled}/dotenv-expand/package.json +0 -0
  191. /package/{compiled → dist/compiled}/execa/index.d.ts +0 -0
  192. /package/{compiled → dist/compiled}/execa/index.js +0 -0
  193. /package/{compiled → dist/compiled}/execa/license +0 -0
  194. /package/{compiled → dist/compiled}/execa/package.json +0 -0
  195. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/adapters/fs.d.ts +0 -0
  196. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/index.d.ts +0 -0
  197. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/providers/async.d.ts +0 -0
  198. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/settings.d.ts +0 -0
  199. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/types/index.d.ts +0 -0
  200. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/adapters/fs.d.ts +0 -0
  201. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/index.d.ts +0 -0
  202. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/providers/async.d.ts +0 -0
  203. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/settings.d.ts +0 -0
  204. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/types/index.d.ts +0 -0
  205. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/index.d.ts +0 -0
  206. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/providers/async.d.ts +0 -0
  207. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/readers/async.d.ts +0 -0
  208. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/readers/reader.d.ts +0 -0
  209. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/settings.d.ts +0 -0
  210. /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/types/index.d.ts +0 -0
  211. /package/{compiled → dist/compiled}/fast-glob/index.js +0 -0
  212. /package/{compiled → dist/compiled}/fast-glob/license +0 -0
  213. /package/{compiled → dist/compiled}/fast-glob/out/index.d.ts +0 -0
  214. /package/{compiled → dist/compiled}/fast-glob/out/managers/tasks.d.ts +0 -0
  215. /package/{compiled → dist/compiled}/fast-glob/out/settings.d.ts +0 -0
  216. /package/{compiled → dist/compiled}/fast-glob/out/types/index.d.ts +0 -0
  217. /package/{compiled → dist/compiled}/fast-glob/package.json +0 -0
  218. /package/{compiled → dist/compiled}/filesize/filesize.d.ts +0 -0
  219. /package/{compiled → dist/compiled}/filesize/index.js +0 -0
  220. /package/{compiled → dist/compiled}/filesize/license +0 -0
  221. /package/{compiled → dist/compiled}/filesize/package.json +0 -0
  222. /package/{compiled → dist/compiled}/fs-extra/index.d.ts +0 -0
  223. /package/{compiled → dist/compiled}/fs-extra/index.js +0 -0
  224. /package/{compiled → dist/compiled}/fs-extra/license +0 -0
  225. /package/{compiled → dist/compiled}/fs-extra/package.json +0 -0
  226. /package/{compiled → dist/compiled}/glob/index.d.ts +0 -0
  227. /package/{compiled → dist/compiled}/glob/index.js +0 -0
  228. /package/{compiled → dist/compiled}/glob/license +0 -0
  229. /package/{compiled → dist/compiled}/glob/minimatch/index.d.ts +0 -0
  230. /package/{compiled → dist/compiled}/glob/package.json +0 -0
  231. /package/{compiled → dist/compiled}/globby/index.d.ts +0 -0
  232. /package/{compiled → dist/compiled}/globby/index.js +0 -0
  233. /package/{compiled → dist/compiled}/globby/license +0 -0
  234. /package/{compiled → dist/compiled}/globby/package.json +0 -0
  235. /package/{compiled → dist/compiled}/gzip-size/index.d.ts +0 -0
  236. /package/{compiled → dist/compiled}/gzip-size/index.js +0 -0
  237. /package/{compiled → dist/compiled}/gzip-size/license +0 -0
  238. /package/{compiled → dist/compiled}/gzip-size/package.json +0 -0
  239. /package/{compiled → dist/compiled}/import-lazy/index.d.ts +0 -0
  240. /package/{compiled → dist/compiled}/import-lazy/index.js +0 -0
  241. /package/{compiled → dist/compiled}/import-lazy/license +0 -0
  242. /package/{compiled → dist/compiled}/import-lazy/package.json +0 -0
  243. /package/{compiled → dist/compiled}/inquirer/index.d.ts +0 -0
  244. /package/{compiled → dist/compiled}/inquirer/index.js +0 -0
  245. /package/{compiled → dist/compiled}/inquirer/lib/objects/choice.d.ts +0 -0
  246. /package/{compiled → dist/compiled}/inquirer/lib/objects/choices.d.ts +0 -0
  247. /package/{compiled → dist/compiled}/inquirer/lib/objects/separator.d.ts +0 -0
  248. /package/{compiled → dist/compiled}/inquirer/lib/ui/baseUI.d.ts +0 -0
  249. /package/{compiled → dist/compiled}/inquirer/lib/ui/bottom-bar.d.ts +0 -0
  250. /package/{compiled → dist/compiled}/inquirer/lib/ui/prompt.d.ts +0 -0
  251. /package/{compiled → dist/compiled}/inquirer/license +0 -0
  252. /package/{compiled → dist/compiled}/inquirer/package.json +0 -0
  253. /package/{compiled → dist/compiled}/inquirer/through/index.d.ts +0 -0
  254. /package/{compiled → dist/compiled}/js-yaml/index.d.ts +0 -0
  255. /package/{compiled → dist/compiled}/js-yaml/index.js +0 -0
  256. /package/{compiled → dist/compiled}/js-yaml/license +0 -0
  257. /package/{compiled → dist/compiled}/js-yaml/package.json +0 -0
  258. /package/{compiled → dist/compiled}/json5/index.js +0 -0
  259. /package/{compiled → dist/compiled}/json5/lib/index.d.ts +0 -0
  260. /package/{compiled → dist/compiled}/json5/lib/parse.d.ts +0 -0
  261. /package/{compiled → dist/compiled}/json5/lib/stringify.d.ts +0 -0
  262. /package/{compiled → dist/compiled}/json5/package.json +0 -0
  263. /package/{compiled → dist/compiled}/lodash/common/array.d.ts +0 -0
  264. /package/{compiled → dist/compiled}/lodash/common/collection.d.ts +0 -0
  265. /package/{compiled → dist/compiled}/lodash/common/common.d.ts +0 -0
  266. /package/{compiled → dist/compiled}/lodash/common/date.d.ts +0 -0
  267. /package/{compiled → dist/compiled}/lodash/common/function.d.ts +0 -0
  268. /package/{compiled → dist/compiled}/lodash/common/lang.d.ts +0 -0
  269. /package/{compiled → dist/compiled}/lodash/common/math.d.ts +0 -0
  270. /package/{compiled → dist/compiled}/lodash/common/number.d.ts +0 -0
  271. /package/{compiled → dist/compiled}/lodash/common/object.d.ts +0 -0
  272. /package/{compiled → dist/compiled}/lodash/common/seq.d.ts +0 -0
  273. /package/{compiled → dist/compiled}/lodash/common/string.d.ts +0 -0
  274. /package/{compiled → dist/compiled}/lodash/common/util.d.ts +0 -0
  275. /package/{compiled → dist/compiled}/lodash/index.d.ts +0 -0
  276. /package/{compiled → dist/compiled}/lodash/index.js +0 -0
  277. /package/{compiled → dist/compiled}/lodash/license +0 -0
  278. /package/{compiled → dist/compiled}/lodash/package.json +0 -0
  279. /package/{compiled → dist/compiled}/mime-types/index.d.ts +0 -0
  280. /package/{compiled → dist/compiled}/mime-types/index.js +0 -0
  281. /package/{compiled → dist/compiled}/mime-types/license +0 -0
  282. /package/{compiled → dist/compiled}/mime-types/package.json +0 -0
  283. /package/{compiled → dist/compiled}/minimist/index.d.ts +0 -0
  284. /package/{compiled → dist/compiled}/minimist/index.js +0 -0
  285. /package/{compiled → dist/compiled}/minimist/license +0 -0
  286. /package/{compiled → dist/compiled}/minimist/package.json +0 -0
  287. /package/{compiled → dist/compiled}/nanoid/index.d.ts +0 -0
  288. /package/{compiled → dist/compiled}/nanoid/index.js +0 -0
  289. /package/{compiled → dist/compiled}/nanoid/license +0 -0
  290. /package/{compiled → dist/compiled}/nanoid/package.json +0 -0
  291. /package/{compiled → dist/compiled}/ora/cli-spinners/index.d.ts +0 -0
  292. /package/{compiled → dist/compiled}/ora/index.d.ts +0 -0
  293. /package/{compiled → dist/compiled}/ora/index.js +0 -0
  294. /package/{compiled → dist/compiled}/ora/license +0 -0
  295. /package/{compiled → dist/compiled}/ora/package.json +0 -0
  296. /package/{compiled → dist/compiled}/pkg-up/index.d.ts +0 -0
  297. /package/{compiled → dist/compiled}/pkg-up/index.js +0 -0
  298. /package/{compiled → dist/compiled}/pkg-up/license +0 -0
  299. /package/{compiled → dist/compiled}/pkg-up/package.json +0 -0
  300. /package/{compiled → dist/compiled}/recursive-readdir/index.d.ts +0 -0
  301. /package/{compiled → dist/compiled}/recursive-readdir/index.js +0 -0
  302. /package/{compiled → dist/compiled}/recursive-readdir/license +0 -0
  303. /package/{compiled → dist/compiled}/recursive-readdir/package.json +0 -0
  304. /package/{compiled → dist/compiled}/schema-utils3/index.d.ts +0 -0
  305. /package/{compiled → dist/compiled}/schema-utils3/index.js +0 -0
  306. /package/{compiled → dist/compiled}/schema-utils3/license +0 -0
  307. /package/{compiled → dist/compiled}/schema-utils3/package.json +0 -0
  308. /package/{compiled → dist/compiled}/semver/classes/comparator.d.ts +0 -0
  309. /package/{compiled → dist/compiled}/semver/classes/range.d.ts +0 -0
  310. /package/{compiled → dist/compiled}/semver/classes/semver.d.ts +0 -0
  311. /package/{compiled → dist/compiled}/semver/functions/clean.d.ts +0 -0
  312. /package/{compiled → dist/compiled}/semver/functions/cmp.d.ts +0 -0
  313. /package/{compiled → dist/compiled}/semver/functions/coerce.d.ts +0 -0
  314. /package/{compiled → dist/compiled}/semver/functions/compare-build.d.ts +0 -0
  315. /package/{compiled → dist/compiled}/semver/functions/compare-loose.d.ts +0 -0
  316. /package/{compiled → dist/compiled}/semver/functions/compare.d.ts +0 -0
  317. /package/{compiled → dist/compiled}/semver/functions/diff.d.ts +0 -0
  318. /package/{compiled → dist/compiled}/semver/functions/eq.d.ts +0 -0
  319. /package/{compiled → dist/compiled}/semver/functions/gt.d.ts +0 -0
  320. /package/{compiled → dist/compiled}/semver/functions/gte.d.ts +0 -0
  321. /package/{compiled → dist/compiled}/semver/functions/inc.d.ts +0 -0
  322. /package/{compiled → dist/compiled}/semver/functions/lt.d.ts +0 -0
  323. /package/{compiled → dist/compiled}/semver/functions/lte.d.ts +0 -0
  324. /package/{compiled → dist/compiled}/semver/functions/major.d.ts +0 -0
  325. /package/{compiled → dist/compiled}/semver/functions/minor.d.ts +0 -0
  326. /package/{compiled → dist/compiled}/semver/functions/neq.d.ts +0 -0
  327. /package/{compiled → dist/compiled}/semver/functions/parse.d.ts +0 -0
  328. /package/{compiled → dist/compiled}/semver/functions/patch.d.ts +0 -0
  329. /package/{compiled → dist/compiled}/semver/functions/prerelease.d.ts +0 -0
  330. /package/{compiled → dist/compiled}/semver/functions/rcompare.d.ts +0 -0
  331. /package/{compiled → dist/compiled}/semver/functions/rsort.d.ts +0 -0
  332. /package/{compiled → dist/compiled}/semver/functions/satisfies.d.ts +0 -0
  333. /package/{compiled → dist/compiled}/semver/functions/sort.d.ts +0 -0
  334. /package/{compiled → dist/compiled}/semver/functions/valid.d.ts +0 -0
  335. /package/{compiled → dist/compiled}/semver/index.d.ts +0 -0
  336. /package/{compiled → dist/compiled}/semver/index.js +0 -0
  337. /package/{compiled → dist/compiled}/semver/internals/identifiers.d.ts +0 -0
  338. /package/{compiled → dist/compiled}/semver/license +0 -0
  339. /package/{compiled → dist/compiled}/semver/package.json +0 -0
  340. /package/{compiled → dist/compiled}/semver/ranges/gtr.d.ts +0 -0
  341. /package/{compiled → dist/compiled}/semver/ranges/intersects.d.ts +0 -0
  342. /package/{compiled → dist/compiled}/semver/ranges/ltr.d.ts +0 -0
  343. /package/{compiled → dist/compiled}/semver/ranges/max-satisfying.d.ts +0 -0
  344. /package/{compiled → dist/compiled}/semver/ranges/min-satisfying.d.ts +0 -0
  345. /package/{compiled → dist/compiled}/semver/ranges/min-version.d.ts +0 -0
  346. /package/{compiled → dist/compiled}/semver/ranges/outside.d.ts +0 -0
  347. /package/{compiled → dist/compiled}/semver/ranges/simplify.d.ts +0 -0
  348. /package/{compiled → dist/compiled}/semver/ranges/subset.d.ts +0 -0
  349. /package/{compiled → dist/compiled}/semver/ranges/to-comparators.d.ts +0 -0
  350. /package/{compiled → dist/compiled}/semver/ranges/valid.d.ts +0 -0
  351. /package/{compiled → dist/compiled}/signale/index.d.ts +0 -0
  352. /package/{compiled → dist/compiled}/signale/index.js +0 -0
  353. /package/{compiled → dist/compiled}/signale/package.json +0 -0
  354. /package/{compiled → dist/compiled}/slash/index.d.ts +0 -0
  355. /package/{compiled → dist/compiled}/slash/index.js +0 -0
  356. /package/{compiled → dist/compiled}/slash/license +0 -0
  357. /package/{compiled → dist/compiled}/slash/package.json +0 -0
  358. /package/{compiled → dist/compiled}/strip-ansi/index.d.ts +0 -0
  359. /package/{compiled → dist/compiled}/strip-ansi/index.js +0 -0
  360. /package/{compiled → dist/compiled}/strip-ansi/license +0 -0
  361. /package/{compiled → dist/compiled}/strip-ansi/package.json +0 -0
  362. /package/{compiled → dist/compiled}/tsconfig-paths/index.js +0 -0
  363. /package/{compiled → dist/compiled}/tsconfig-paths/lib/config-loader.d.ts +0 -0
  364. /package/{compiled → dist/compiled}/tsconfig-paths/lib/filesystem.d.ts +0 -0
  365. /package/{compiled → dist/compiled}/tsconfig-paths/lib/index.d.ts +0 -0
  366. /package/{compiled → dist/compiled}/tsconfig-paths/lib/mapping-entry.d.ts +0 -0
  367. /package/{compiled → dist/compiled}/tsconfig-paths/lib/match-path-async.d.ts +0 -0
  368. /package/{compiled → dist/compiled}/tsconfig-paths/lib/match-path-sync.d.ts +0 -0
  369. /package/{compiled → dist/compiled}/tsconfig-paths/lib/register.d.ts +0 -0
  370. /package/{compiled → dist/compiled}/tsconfig-paths/lib/try-path.d.ts +0 -0
  371. /package/{compiled → dist/compiled}/tsconfig-paths/lib/tsconfig-loader.d.ts +0 -0
  372. /package/{compiled → dist/compiled}/tsconfig-paths/license +0 -0
  373. /package/{compiled → dist/compiled}/tsconfig-paths/package.json +0 -0
  374. /package/{compiled → dist/compiled}/upath/index.js +0 -0
  375. /package/{compiled → dist/compiled}/upath/license +0 -0
  376. /package/{compiled → dist/compiled}/upath/package.json +0 -0
  377. /package/{compiled → dist/compiled}/upath/upath.d.ts +0 -0
  378. /package/{compiled → dist/compiled}/url-join/index.d.ts +0 -0
  379. /package/{compiled → dist/compiled}/url-join/index.js +0 -0
  380. /package/{compiled → dist/compiled}/url-join/license +0 -0
  381. /package/{compiled → dist/compiled}/url-join/package.json +0 -0
  382. /package/{compiled → dist/compiled}/webpack-chain/index.js +0 -0
  383. /package/{compiled → dist/compiled}/webpack-chain/license +0 -0
  384. /package/{compiled → dist/compiled}/webpack-chain/package.json +0 -0
  385. /package/{compiled → dist/compiled}/webpack-chain/types/index.d.ts +0 -0
  386. /package/{compiled → dist/compiled}/webpack-dev-middleware/index.js +0 -0
  387. /package/{compiled → dist/compiled}/webpack-dev-middleware/license +0 -0
  388. /package/{compiled → dist/compiled}/webpack-dev-middleware/package.json +0 -0
  389. /package/{compiled → dist/compiled}/webpack-dev-middleware/types/index.d.ts +0 -0
  390. /package/dist/{FileSizeReporter.d.ts → types/FileSizeReporter.d.ts} +0 -0
  391. /package/dist/{alias.d.ts → types/alias.d.ts} +0 -0
  392. /package/dist/{analyzeProject.d.ts → types/analyzeProject.d.ts} +0 -0
  393. /package/dist/{applyOptionsChain.d.ts → types/applyOptionsChain.d.ts} +0 -0
  394. /package/dist/{babel.d.ts → types/babel.d.ts} +0 -0
  395. /package/dist/{chainId.d.ts → types/chainId.d.ts} +0 -0
  396. /package/dist/{clearConsole.d.ts → types/clearConsole.d.ts} +0 -0
  397. /package/dist/{commands.d.ts → types/commands.d.ts} +0 -0
  398. /package/dist/{compatRequire.d.ts → types/compatRequire.d.ts} +0 -0
  399. /package/dist/{compiled.d.ts → types/compiled.d.ts} +0 -0
  400. /package/dist/{debug.d.ts → types/debug.d.ts} +0 -0
  401. /package/dist/{emptyDir.d.ts → types/emptyDir.d.ts} +0 -0
  402. /package/dist/{ensureAbsolutePath.d.ts → types/ensureAbsolutePath.d.ts} +0 -0
  403. /package/dist/{ensureArray.d.ts → types/ensureArray.d.ts} +0 -0
  404. /package/dist/{findExists.d.ts → types/findExists.d.ts} +0 -0
  405. /package/dist/{generateMetaTags.d.ts → types/generateMetaTags.d.ts} +0 -0
  406. /package/dist/{getBrowserslist.d.ts → types/getBrowserslist.d.ts} +0 -0
  407. /package/dist/{getCoreJsVersion.d.ts → types/getCoreJsVersion.d.ts} +0 -0
  408. /package/dist/{getEntryOptions.d.ts → types/getEntryOptions.d.ts} +0 -0
  409. /package/dist/{getPackageManager.d.ts → types/getPackageManager.d.ts} +0 -0
  410. /package/dist/{getPort.d.ts → types/getPort.d.ts} +0 -0
  411. /package/dist/{getServerConfig.d.ts → types/getServerConfig.d.ts} +0 -0
  412. /package/dist/{getTargetDir.d.ts → types/getTargetDir.d.ts} +0 -0
  413. /package/dist/{import.d.ts → types/import.d.ts} +0 -0
  414. /package/dist/{index.d.ts → types/index.d.ts} +0 -0
  415. /package/dist/{is → types/is}/index.d.ts +0 -0
  416. /package/dist/{is → types/is}/nodeEnv.d.ts +0 -0
  417. /package/dist/{is → types/is}/platform.d.ts +0 -0
  418. /package/dist/{is → types/is}/type.d.ts +0 -0
  419. /package/dist/{logger.d.ts → types/logger.d.ts} +0 -0
  420. /package/dist/{monorepo.d.ts → types/monorepo.d.ts} +0 -0
  421. /package/dist/{nodeEnv.d.ts → types/nodeEnv.d.ts} +0 -0
  422. /package/dist/{path.d.ts → types/path.d.ts} +0 -0
  423. /package/dist/{pathSerializer.d.ts → types/pathSerializer.d.ts} +0 -0
  424. /package/dist/{plugin.d.ts → types/plugin.d.ts} +0 -0
  425. /package/dist/{printBuildError.d.ts → types/printBuildError.d.ts} +0 -0
  426. /package/dist/{react.d.ts → types/react.d.ts} +0 -0
  427. /package/dist/{readTsConfig.d.ts → types/readTsConfig.d.ts} +0 -0
  428. /package/dist/{removeSlash.d.ts → types/removeSlash.d.ts} +0 -0
  429. /package/dist/{resolve.d.ts → types/resolve.d.ts} +0 -0
  430. /package/dist/{routes.d.ts → types/routes.d.ts} +0 -0
  431. /package/dist/{runtimeExports.d.ts → types/runtimeExports.d.ts} +0 -0
  432. /package/dist/{ssr.d.ts → types/ssr.d.ts} +0 -0
  433. /package/dist/{storage.d.ts → types/storage.d.ts} +0 -0
  434. /package/dist/{testUtils.d.ts → types/testUtils.d.ts} +0 -0
  435. /package/dist/{types.d.ts → types/types.d.ts} +0 -0
  436. /package/dist/{universal → types/universal}/constants.d.ts +0 -0
  437. /package/dist/{universal → types/universal}/formatWebpack.d.ts +0 -0
  438. /package/dist/{universal → types/universal}/nestedRoutes.d.ts +0 -0
  439. /package/dist/{universal → types/universal}/remixRouter.d.ts +0 -0
  440. /package/dist/{universal → types/universal}/serialize.d.ts +0 -0
  441. /package/dist/{version.d.ts → types/version.d.ts} +0 -0
  442. /package/dist/{wait.d.ts → types/wait.d.ts} +0 -0
  443. /package/dist/{watch.d.ts → types/watch.d.ts} +0 -0
@@ -0,0 +1,50 @@
1
+ import path from "path";
2
+ import os from "os";
3
+ import fs from "fs";
4
+ import { nanoid, upath, lodash as _ } from "./compiled";
5
+ const isPathString = (test) => path.posix.basename(test) !== test || path.win32.basename(test) !== test;
6
+ const isRelativePath = (test) => /^\.\.?($|[\\/])/.test(test);
7
+ const normalizeOutputPath = (s) => s.replace(/\\/g, "\\\\");
8
+ const normalizeToPosixPath = (p) => upath.normalizeSafe(path.normalize(p || "")).replace(/^([a-zA-Z]+):/, (_2, m) => `/${m.toLowerCase()}`);
9
+ const getTemplatePath = (prefix) => {
10
+ const tmpRoot = fs.realpathSync(os.tmpdir());
11
+ const parts = [tmpRoot];
12
+ prefix && parts.push(prefix);
13
+ parts.push(nanoid());
14
+ return path.resolve(...parts);
15
+ };
16
+ function compilePathMatcherRegExp(match) {
17
+ if (typeof match !== "string") {
18
+ return match;
19
+ }
20
+ const escaped = _.escapeRegExp(match);
21
+ return new RegExp(`(?<=\\W|^)${escaped}(?=\\W|$)`);
22
+ }
23
+ const _joinPathParts = (_part, i, parts) => _(parts).filter((part) => !["/", "\\"].includes(part)).tap((parts2) => parts2.unshift("")).slice(0, i + 2).join("/");
24
+ function upwardPaths(start) {
25
+ return _(start).split(/[/\\]/).filter(Boolean).map(_joinPathParts).reverse().push("/").value();
26
+ }
27
+ function getRealTemporaryDirectory() {
28
+ let ret = null;
29
+ try {
30
+ ret = os.tmpdir();
31
+ ret = fs.realpathSync(ret);
32
+ } catch {
33
+ }
34
+ return ret;
35
+ }
36
+ function splitPathString(str) {
37
+ return str.split(/[\\/]/);
38
+ }
39
+ export {
40
+ _joinPathParts,
41
+ compilePathMatcherRegExp,
42
+ getRealTemporaryDirectory,
43
+ getTemplatePath,
44
+ isPathString,
45
+ isRelativePath,
46
+ normalizeOutputPath,
47
+ normalizeToPosixPath,
48
+ splitPathString,
49
+ upwardPaths
50
+ };
@@ -0,0 +1,46 @@
1
+ import os from "os";
2
+ import _ from "../compiled/lodash";
3
+ import {
4
+ compilePathMatcherRegExp,
5
+ normalizeToPosixPath,
6
+ getRealTemporaryDirectory,
7
+ splitPathString,
8
+ upwardPaths
9
+ } from "./path";
10
+ const matchUpwardPathsAsUnknown = (p) => _(upwardPaths(normalizeToPosixPath(p))).map((match) => ({ match, mark: "unknown" })).slice(1, -1).value();
11
+ function applyPathMatcher(matcher, str, options = {}) {
12
+ const regex = compilePathMatcherRegExp(matcher.match);
13
+ const replacer = (substring, ...args) => {
14
+ if (options.minPartials && splitPathString(substring).length < options.minPartials) {
15
+ return substring;
16
+ }
17
+ const ret = typeof matcher.mark === "string" ? matcher.mark : matcher.mark(substring, ...args);
18
+ return `<${_.snakeCase(ret).toUpperCase()}>`;
19
+ };
20
+ return str.replace(regex, replacer);
21
+ }
22
+ function applyMatcherReplacement(matchers, str, options = {}) {
23
+ return matchers.reduce((ret, matcher) => {
24
+ return applyPathMatcher(matcher, ret, options);
25
+ }, str);
26
+ }
27
+ const createDefaultPathMatchers = (root) => {
28
+ const ret = [
29
+ {
30
+ match: /(?<=\/)(\.pnpm\/.+?\/node_modules)(?=\/)/,
31
+ mark: "pnpmInner"
32
+ }
33
+ ];
34
+ const tmpdir = getRealTemporaryDirectory();
35
+ tmpdir && ret.push({ match: tmpdir, mark: "temp" });
36
+ ret.push({ match: os.tmpdir(), mark: "temp" });
37
+ ret.push({ match: os.homedir(), mark: "home" });
38
+ ret.push(...matchUpwardPathsAsUnknown(root));
39
+ return ret;
40
+ };
41
+ export {
42
+ applyMatcherReplacement,
43
+ applyPathMatcher,
44
+ createDefaultPathMatchers,
45
+ matchUpwardPathsAsUnknown
46
+ };
@@ -0,0 +1,23 @@
1
+ import { INTERNAL_CLI_PLUGINS } from "./constants";
2
+ import { isDepExists } from "./is";
3
+ function getInternalPlugins(appDirectory, internalPlugins = INTERNAL_CLI_PLUGINS) {
4
+ return [
5
+ ...Object.keys(internalPlugins).filter((name) => {
6
+ const config = internalPlugins[name];
7
+ if (typeof config !== "string" && config.forced === true) {
8
+ return true;
9
+ }
10
+ return isDepExists(appDirectory, name);
11
+ }).map((name) => {
12
+ const config = internalPlugins[name];
13
+ if (typeof config !== "string") {
14
+ return config.path;
15
+ } else {
16
+ return config;
17
+ }
18
+ })
19
+ ];
20
+ }
21
+ export {
22
+ getInternalPlugins
23
+ };
@@ -0,0 +1,95 @@
1
+ import os from "os";
2
+ import { chalk } from "./compiled";
3
+ import { isDev, isSingleEntry } from "./is";
4
+ import { DEFAULT_DEV_HOST } from "./constants";
5
+ const normalizeUrl = (url) => url.replace(/([^:]\/)\/+/g, "$1");
6
+ const getIpv4Interfaces = () => {
7
+ const interfaces = os.networkInterfaces();
8
+ const ipv4Interfaces = [];
9
+ Object.keys(interfaces).forEach((key) => {
10
+ interfaces[key].forEach((detail) => {
11
+ const familyV4Value = typeof detail.family === "string" ? "IPv4" : 4;
12
+ if (detail.family === familyV4Value) {
13
+ ipv4Interfaces.push(detail);
14
+ }
15
+ });
16
+ });
17
+ return ipv4Interfaces;
18
+ };
19
+ const getAddressUrls = (protocol = "http", port, host) => {
20
+ const LOCAL_LABEL = "Local: ";
21
+ const NETWORK_LABEL = "Network: ";
22
+ const isLocalhost = (url) => url == null ? void 0 : url.includes("localhost");
23
+ if (host && host !== DEFAULT_DEV_HOST) {
24
+ return [
25
+ {
26
+ label: isLocalhost(host) ? LOCAL_LABEL : NETWORK_LABEL,
27
+ url: `${protocol}://${host}:${port}`
28
+ }
29
+ ];
30
+ }
31
+ const ipv4Interfaces = getIpv4Interfaces();
32
+ return ipv4Interfaces.reduce((memo, detail) => {
33
+ if (isLocalhost(detail.address) || detail.internal) {
34
+ memo.push({
35
+ label: LOCAL_LABEL,
36
+ url: `${protocol}://localhost:${port}`
37
+ });
38
+ } else {
39
+ memo.push({
40
+ label: NETWORK_LABEL,
41
+ url: `${protocol}://${detail.address}:${port}`
42
+ });
43
+ }
44
+ return memo;
45
+ }, []);
46
+ };
47
+ const prettyInstructions = (appContext, config) => {
48
+ var _a;
49
+ const { entrypoints, serverRoutes, port, apiOnly, checkedEntries } = appContext;
50
+ const urls = getAddressUrls(
51
+ config.dev.https && isDev() ? "https" : "http",
52
+ port,
53
+ (_a = config.dev) == null ? void 0 : _a.host
54
+ );
55
+ const routes = !apiOnly ? serverRoutes.filter((route) => route.entryName) : serverRoutes;
56
+ let message = "App running at:\n\n";
57
+ if (isSingleEntry(entrypoints) || apiOnly) {
58
+ message += urls.map(
59
+ ({ label, url }) => ` ${chalk.bold(`> ${label.padEnd(10)}`)}${chalk.cyanBright(
60
+ normalizeUrl(`${url}/${routes[0].urlPath}`)
61
+ )}
62
+ `
63
+ ).join("");
64
+ } else {
65
+ const maxNameLength = Math.max(...routes.map((r) => r.entryName.length));
66
+ urls.forEach(({ label, url }) => {
67
+ message += ` ${chalk.bold(`> ${label}`)}
68
+ `;
69
+ routes.forEach(({ entryName, urlPath, isSSR }) => {
70
+ if (!checkedEntries.includes(entryName)) {
71
+ return;
72
+ }
73
+ message += ` ${chalk.yellowBright(
74
+ isSSR ? "λ" : "○"
75
+ )} ${chalk.yellowBright(
76
+ entryName.padEnd(maxNameLength + 8)
77
+ )}${chalk.cyanBright(normalizeUrl(`${url}/${urlPath}`))}
78
+ `;
79
+ });
80
+ });
81
+ message += "\n";
82
+ message += chalk.cyanBright(
83
+ " λ (Server) server-side renders at runtime\n"
84
+ );
85
+ message += chalk.cyanBright(
86
+ " ○ (Static) client-side renders as static HTML\n"
87
+ );
88
+ }
89
+ return message;
90
+ };
91
+ export {
92
+ getAddressUrls,
93
+ getIpv4Interfaces,
94
+ prettyInstructions
95
+ };
@@ -0,0 +1,34 @@
1
+ import { chalk } from "./compiled";
2
+ import { logger } from "./logger";
3
+ function printBuildError(err) {
4
+ const message = err != null && err.message;
5
+ const stack = err != null && err.stack;
6
+ if (stack && typeof message === "string" && message.indexOf("from Terser") !== -1) {
7
+ try {
8
+ const matched = /(.+)\[(.+):(.+),(.+)\]\[.+\]/.exec(stack);
9
+ if (!matched) {
10
+ throw new Error("Using errors for control flow is bad.");
11
+ }
12
+ const problemPath = matched[2];
13
+ const line = matched[3];
14
+ const column = matched[4];
15
+ logger.error(
16
+ `Failed to minify the code from this file:
17
+
18
+ ${chalk.yellow(
19
+ ` ${problemPath}:${line}${column !== "0" ? ":" + column : ""}`
20
+ )}
21
+ `
22
+ );
23
+ } catch (ignored) {
24
+ logger.error(`Failed to minify the bundle. ${err}
25
+ `);
26
+ }
27
+ } else {
28
+ logger.error((message || err) + "\n");
29
+ }
30
+ logger.log();
31
+ }
32
+ export {
33
+ printBuildError
34
+ };
@@ -0,0 +1,20 @@
1
+ import path from "path";
2
+ import { fs, semver } from ".";
3
+ const isBeyondReact17 = (cwd) => {
4
+ const pkgPath = path.join(cwd, "package.json");
5
+ if (!fs.existsSync(pkgPath)) {
6
+ return false;
7
+ }
8
+ const pkgInfo = JSON.parse(fs.readFileSync(pkgPath, "utf8"));
9
+ const deps = {
10
+ ...pkgInfo.devDependencies,
11
+ ...pkgInfo.dependencies
12
+ };
13
+ if (typeof deps.react !== "string") {
14
+ return false;
15
+ }
16
+ return semver.satisfies(semver.minVersion(deps.react), ">=17.0.0");
17
+ };
18
+ export {
19
+ isBeyondReact17
20
+ };
@@ -0,0 +1,13 @@
1
+ import path from "path";
2
+ import { fs, json5 } from "./compiled";
3
+ const readTsConfig = (root) => {
4
+ return readTsConfigByFile(path.resolve(root, "./tsconfig.json"));
5
+ };
6
+ const readTsConfigByFile = (filename) => {
7
+ const content = fs.readFileSync(path.resolve(filename), "utf-8");
8
+ return json5.parse(content);
9
+ };
10
+ export {
11
+ readTsConfig,
12
+ readTsConfigByFile
13
+ };
@@ -0,0 +1,8 @@
1
+ const removeLeadingSlash = (s) => s.replace(/^\/+/, "");
2
+ const removeTailSlash = (s) => s.replace(/\/+$/, "");
3
+ const removeSlash = (s) => removeLeadingSlash(removeTailSlash(s));
4
+ export {
5
+ removeLeadingSlash,
6
+ removeSlash,
7
+ removeTailSlash
8
+ };
@@ -0,0 +1,38 @@
1
+ import { ensureArray } from "./ensureArray";
2
+ const tryResolve = (name, resolvePath) => {
3
+ let filePath = "";
4
+ try {
5
+ filePath = require.resolve(name, { paths: [resolvePath] });
6
+ delete require.cache[filePath];
7
+ } catch (err) {
8
+ if (err.code === "MODULE_NOT_FOUND") {
9
+ throw new Error(`Can not find module ${name}.`);
10
+ }
11
+ throw err;
12
+ }
13
+ return filePath;
14
+ };
15
+ const isPackageInstalled = (name, resolvePaths) => {
16
+ try {
17
+ require.resolve(name, { paths: ensureArray(resolvePaths) });
18
+ return true;
19
+ } catch (err) {
20
+ return false;
21
+ }
22
+ };
23
+ const getAntdMajorVersion = (appDirectory) => {
24
+ try {
25
+ const pkgJsonPath = require.resolve("antd/package.json", {
26
+ paths: [appDirectory]
27
+ });
28
+ const { version } = require(pkgJsonPath);
29
+ return Number(version.split(".")[0]);
30
+ } catch (err) {
31
+ return null;
32
+ }
33
+ };
34
+ export {
35
+ getAntdMajorVersion,
36
+ isPackageInstalled,
37
+ tryResolve
38
+ };
@@ -0,0 +1,24 @@
1
+ import path from "path";
2
+ import { normalizeToPosixPath } from "./path";
3
+ import { MAIN_ENTRY_NAME } from "./constants";
4
+ const getPathWithoutExt = (filename) => {
5
+ const extname = path.extname(filename);
6
+ return filename.slice(0, -extname.length);
7
+ };
8
+ const getRouteId = (componentPath, routesDir, entryName) => {
9
+ const relativePath = normalizeToPosixPath(
10
+ path.relative(routesDir, componentPath)
11
+ );
12
+ const pathWithoutExt = getPathWithoutExt(relativePath);
13
+ let id = ``;
14
+ if (entryName === MAIN_ENTRY_NAME) {
15
+ id = pathWithoutExt;
16
+ } else {
17
+ id = `${entryName}_${pathWithoutExt}`;
18
+ }
19
+ return id;
20
+ };
21
+ export {
22
+ getPathWithoutExt,
23
+ getRouteId
24
+ };
@@ -0,0 +1 @@
1
+ export * from "./parsed";
@@ -0,0 +1,16 @@
1
+ const parsedJSONFromElement = (id) => {
2
+ const element = document.getElementById(id);
3
+ if (element) {
4
+ try {
5
+ const parsed = JSON.parse(element.textContent || "");
6
+ return parsed;
7
+ } catch (e) {
8
+ console.error(`parse ${id} error`, e);
9
+ return void 0;
10
+ }
11
+ }
12
+ return void 0;
13
+ };
14
+ export {
15
+ parsedJSONFromElement
16
+ };
@@ -0,0 +1,40 @@
1
+ import path from "path";
2
+ import { fs } from "./compiled";
3
+ import { normalizeOutputPath } from "./path";
4
+ const memo = (fn) => {
5
+ const cache = /* @__PURE__ */ new Map();
6
+ return (...params) => {
7
+ const stringifiedParams = JSON.stringify(params);
8
+ const cachedResult = cache.get(stringifiedParams);
9
+ if (cachedResult) {
10
+ return cachedResult;
11
+ }
12
+ const res = fn(...params);
13
+ cache.set(stringifiedParams, res);
14
+ return res;
15
+ };
16
+ };
17
+ const createRuntimeExportsUtils = memo(
18
+ (pwd = "", namespace = "index") => {
19
+ const entryExportFile = path.join(pwd, `.runtime-exports/${namespace}.js`);
20
+ const addExport = (statement) => {
21
+ statement = normalizeOutputPath(statement);
22
+ try {
23
+ fs.ensureFileSync(entryExportFile);
24
+ if (!fs.readFileSync(entryExportFile, "utf8").includes(statement)) {
25
+ fs.appendFileSync(entryExportFile, `${statement}
26
+ `);
27
+ }
28
+ } catch {
29
+ }
30
+ };
31
+ const getPath = () => entryExportFile;
32
+ return {
33
+ addExport,
34
+ getPath
35
+ };
36
+ }
37
+ );
38
+ export {
39
+ createRuntimeExportsUtils
40
+ };
@@ -0,0 +1,6 @@
1
+ import { createStorage } from "./storage";
2
+ const { run, useContext: useHeaders } = createStorage();
3
+ export {
4
+ run,
5
+ useHeaders
6
+ };
@@ -0,0 +1,42 @@
1
+ import * as ah from "async_hooks";
2
+ const createStorage = () => {
3
+ let storage;
4
+ if (typeof ah.AsyncLocalStorage !== "undefined") {
5
+ storage = new ah.AsyncLocalStorage();
6
+ }
7
+ const run = (context, cb) => {
8
+ if (!storage) {
9
+ throw new Error(`Unable to use async_hook, please confirm the node version >= 12.17
10
+ `);
11
+ }
12
+ return new Promise((resolve, reject) => {
13
+ storage.run(context, () => {
14
+ try {
15
+ return resolve(cb());
16
+ } catch (error) {
17
+ return reject(error);
18
+ }
19
+ });
20
+ });
21
+ };
22
+ const useContext = () => {
23
+ if (!storage) {
24
+ throw new Error(`Unable to use async_hook, please confirm the node version >= 12.17
25
+ `);
26
+ }
27
+ const context = storage.getStore();
28
+ if (!context) {
29
+ throw new Error(
30
+ `Can't call useContext out of scope, make sure @modern-js/utils is a single version in node_modules`
31
+ );
32
+ }
33
+ return context;
34
+ };
35
+ return {
36
+ run,
37
+ useContext
38
+ };
39
+ };
40
+ export {
41
+ createStorage
42
+ };
@@ -0,0 +1,15 @@
1
+ const initSnapshotSerializer = (root) => {
2
+ expect.addSnapshotSerializer({
3
+ test: (val) => typeof val === "string" && (val.includes("modern.js") || val.includes("node_modules") || val.includes(root)),
4
+ print: (val) => (
5
+ // eslint-disable-next-line no-nested-ternary
6
+ typeof val === "string" ? (
7
+ // eslint-disable-next-line no-nested-ternary
8
+ val.includes("node_modules") ? `"${val.replace(/.+node_modules/, ``).replace(/\\/g, "/")}"` : val.includes("modern.js") ? `"${val.replace(/.+modern\.js/, ``).replace(/\\/g, "/")}"` : `"${val.replace(root, "").replace(/\\/g, "/")}"`
9
+ ) : val
10
+ )
11
+ });
12
+ };
13
+ export {
14
+ initSnapshotSerializer
15
+ };
File without changes
@@ -0,0 +1,6 @@
1
+ const ROUTE_MANIFEST = `_MODERNJS_ROUTE_MANIFEST`;
2
+ const HMR_SOCK_PATH = "/webpack-hmr";
3
+ export {
4
+ HMR_SOCK_PATH,
5
+ ROUTE_MANIFEST
6
+ };
@@ -0,0 +1,77 @@
1
+ const friendlySyntaxErrorLabel = "SyntaxError:";
2
+ function isLikelyASyntaxError(message) {
3
+ return message.includes(friendlySyntaxErrorLabel);
4
+ }
5
+ function formatMessage(stats) {
6
+ let lines = [];
7
+ let message;
8
+ if (typeof stats === "object") {
9
+ const fileName = stats.moduleName ? `File: ${stats.moduleName}
10
+ ` : "";
11
+ const mainMessage = typeof stats.formatted === "string" ? stats.formatted : stats.message;
12
+ const details = stats.details ? `
13
+ Details: ${stats.details}
14
+ ` : "";
15
+ const stack = stats.stack ? `
16
+ ${stats.stack}` : "";
17
+ message = `${fileName}${mainMessage}${details}${stack}`;
18
+ } else {
19
+ message = stats;
20
+ }
21
+ lines = message.split("\n");
22
+ lines = lines.map((line) => {
23
+ const parsingError = /Line (\d+):(?:(\d+):)?\s*Parsing error: (.+)$/.exec(
24
+ line
25
+ );
26
+ if (!parsingError) {
27
+ return line;
28
+ }
29
+ const [, errorLine, errorColumn, errorMessage] = parsingError;
30
+ return `${friendlySyntaxErrorLabel} ${errorMessage} (${errorLine}:${errorColumn})`;
31
+ });
32
+ message = lines.join("\n");
33
+ message = message.replace(
34
+ /SyntaxError\s+\((\d+):(\d+)\)\s*(.+?)\n/g,
35
+ `${friendlySyntaxErrorLabel} $3 ($1:$2)
36
+ `
37
+ );
38
+ lines = message.split("\n");
39
+ if (lines.length > 2 && lines[1].trim() === "") {
40
+ lines.splice(1, 1);
41
+ }
42
+ lines[0] = lines[0].replace(/^(.*) \d+:\d+-\d+$/, "$1");
43
+ if (lines[1] && lines[1].indexOf("Module not found:") !== -1) {
44
+ lines[1] = lines[1].replace("Error: ", "");
45
+ }
46
+ message = lines.join("\n");
47
+ message = message.replace(
48
+ /^\s*at\s((?!webpack:).)*:\d+:\d+[\s)]*(\n|$)/gm,
49
+ ""
50
+ );
51
+ message = message.replace(/^\s*at\s<anonymous>(\n|$)/gm, "");
52
+ lines = message.split("\n");
53
+ lines = lines.filter(
54
+ (line, index, arr) => index === 0 || line.trim() !== "" || line.trim() !== arr[index - 1].trim()
55
+ );
56
+ message = lines.join("\n");
57
+ return message.trim();
58
+ }
59
+ function formatWebpackMessages(json) {
60
+ var _a, _b, _c;
61
+ const formattedErrors = (_a = json == null ? void 0 : json.errors) == null ? void 0 : _a.map(formatMessage);
62
+ const formattedWarnings = (_b = json == null ? void 0 : json.warnings) == null ? void 0 : _b.map(formatMessage);
63
+ const result = {
64
+ errors: formattedErrors || [],
65
+ warnings: formattedWarnings || []
66
+ };
67
+ if ((_c = result.errors) == null ? void 0 : _c.some(isLikelyASyntaxError)) {
68
+ result.errors = result.errors.filter(isLikelyASyntaxError);
69
+ }
70
+ if (result.errors.length > 1) {
71
+ result.errors.length = 1;
72
+ }
73
+ return result;
74
+ }
75
+ export {
76
+ formatWebpackMessages
77
+ };
@@ -0,0 +1,93 @@
1
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
2
+ import { Suspense } from "react";
3
+ import {
4
+ createRoutesFromElements,
5
+ Route
6
+ } from "react-router-dom";
7
+ const transformNestedRoutes = (routes) => {
8
+ const routeElements = [];
9
+ for (const route of routes) {
10
+ const routeElement = renderNestedRoute(route);
11
+ routeElements.push(routeElement);
12
+ }
13
+ return createRoutesFromElements(routeElements);
14
+ };
15
+ const renderNestedRoute = (nestedRoute, options = {}) => {
16
+ const { children, index, id, component, isRoot, lazyImport, config } = nestedRoute;
17
+ const Component = component;
18
+ const { parent, DeferredDataComponent, props = {} } = options;
19
+ const routeProps = {
20
+ caseSensitive: nestedRoute.caseSensitive,
21
+ path: nestedRoute.path,
22
+ id: nestedRoute.id,
23
+ loader: createLoader(nestedRoute),
24
+ action: nestedRoute.action,
25
+ hasErrorBoundary: nestedRoute.hasErrorBoundary,
26
+ shouldRevalidate: nestedRoute.shouldRevalidate,
27
+ handle: typeof config === "object" ? config == null ? void 0 : config.handle : {},
28
+ index: nestedRoute.index,
29
+ element: nestedRoute.element,
30
+ errorElement: nestedRoute.errorElement
31
+ };
32
+ if (nestedRoute.error) {
33
+ const errorElement = /* @__PURE__ */ jsx(nestedRoute.error, {});
34
+ routeProps.errorElement = errorElement;
35
+ }
36
+ let element;
37
+ if (Component) {
38
+ if ((parent == null ? void 0 : parent.loading) && lazyImport) {
39
+ const Loading = parent.loading;
40
+ if (isLoadableComponent(Component)) {
41
+ element = /* @__PURE__ */ jsx(Component, { fallback: /* @__PURE__ */ jsx(Loading, {}) });
42
+ } else {
43
+ element = /* @__PURE__ */ jsx(Suspense, { fallback: /* @__PURE__ */ jsx(Loading, {}), children: /* @__PURE__ */ jsx(Component, {}) });
44
+ }
45
+ } else if (isLoadableComponent(Component) && lazyImport) {
46
+ element = /* @__PURE__ */ jsx(Component, {});
47
+ } else if (isRoot) {
48
+ element = /* @__PURE__ */ jsxs(Fragment, { children: [
49
+ /* @__PURE__ */ jsx(Component, { ...props }),
50
+ typeof document === "undefined" && DeferredDataComponent && /* @__PURE__ */ jsx(DeferredDataComponent, {})
51
+ ] });
52
+ } else if (lazyImport) {
53
+ element = /* @__PURE__ */ jsx(Suspense, { fallback: null, children: /* @__PURE__ */ jsx(Component, {}) });
54
+ } else {
55
+ element = /* @__PURE__ */ jsx(Component, {});
56
+ }
57
+ } else {
58
+ nestedRoute.loading = parent == null ? void 0 : parent.loading;
59
+ }
60
+ if (element) {
61
+ routeProps.element = element;
62
+ }
63
+ const childElements = children == null ? void 0 : children.map((childRoute) => {
64
+ return renderNestedRoute(childRoute, { parent: nestedRoute });
65
+ });
66
+ const routeElement = index ? /* @__PURE__ */ jsx(Route, { ...routeProps, index: true }, id) : /* @__PURE__ */ jsx(Route, { ...routeProps, index: false, children: childElements }, id);
67
+ return routeElement;
68
+ };
69
+ function createLoader(route) {
70
+ const { loader } = route;
71
+ if (loader) {
72
+ return (args) => {
73
+ if (typeof route.lazyImport === "function") {
74
+ route.lazyImport();
75
+ }
76
+ return loader(args);
77
+ };
78
+ } else {
79
+ return () => {
80
+ if (typeof route.lazyImport === "function") {
81
+ route.lazyImport();
82
+ }
83
+ return null;
84
+ };
85
+ }
86
+ }
87
+ function isLoadableComponent(component) {
88
+ return component && component.displayName === "Loadable" && component.preload && typeof component.preload === "function";
89
+ }
90
+ export {
91
+ renderNestedRoute,
92
+ transformNestedRoutes
93
+ };
@@ -0,0 +1 @@
1
+ export * from "@remix-run/router";
@@ -0,0 +1,7 @@
1
+ import serialize from "serialize-javascript";
2
+ const serializeJson = (data) => {
3
+ return serialize(data, { isJSON: true });
4
+ };
5
+ export {
6
+ serializeJson
7
+ };