@modern-js/utils 2.13.3 → 2.14.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +31 -0
- package/dist/{alias.js → cjs/alias.js} +4 -15
- package/dist/{analyzeProject.js → cjs/analyzeProject.js} +5 -25
- package/dist/{babel.js → cjs/babel.js} +9 -16
- package/dist/{compatRequire.js → cjs/compatRequire.js} +4 -17
- package/dist/{constants.js → cjs/constants.js} +7 -13
- package/dist/cjs/emptyDir.js +32 -0
- package/dist/{getEntryOptions.js → cjs/getEntryOptions.js} +1 -15
- package/dist/{getPackageManager.js → cjs/getPackageManager.js} +19 -41
- package/dist/{getPort.js → cjs/getPort.js} +4 -24
- package/dist/{getServerConfig.js → cjs/getServerConfig.js} +2 -22
- package/dist/{is → cjs/is}/index.js +3 -2
- package/dist/{logger.js → cjs/logger.js} +5 -16
- package/dist/{monorepo.js → cjs/monorepo.js} +4 -15
- package/dist/cjs/nodeEnv.js +55 -0
- package/dist/{path.js → cjs/path.js} +1 -1
- package/dist/{pathSerializer.js → cjs/pathSerializer.js} +1 -1
- package/dist/{prettyInstructions.js → cjs/prettyInstructions.js} +26 -8
- package/dist/{react.js → cjs/react.js} +4 -15
- package/dist/cjs/runtime/index.js +17 -0
- package/dist/cjs/runtime/parsed.js +39 -0
- package/dist/{runtimeExports.js → cjs/runtimeExports.js} +1 -1
- package/dist/{universal → cjs/universal}/nestedRoutes.js +4 -21
- package/dist/cjs/version.js +59 -0
- package/dist/{watch.js → cjs/watch.js} +9 -29
- package/dist/esm/FileSizeReporter.js +133 -0
- package/dist/esm/alias.js +61 -0
- package/dist/esm/analyzeProject.js +17 -0
- package/dist/esm/applyOptionsChain.js +35 -0
- package/dist/esm/babel.js +105 -0
- package/dist/esm/chainId.js +173 -0
- package/dist/esm/clearConsole.js +8 -0
- package/dist/esm/commands.js +22 -0
- package/dist/esm/compatRequire.js +42 -0
- package/dist/esm/compiled.js +77 -0
- package/dist/esm/constants.js +260 -0
- package/dist/esm/debug.js +5 -0
- package/dist/esm/emptyDir.js +9 -0
- package/dist/esm/ensureAbsolutePath.js +5 -0
- package/dist/esm/ensureArray.js +9 -0
- package/dist/esm/findExists.js +12 -0
- package/dist/esm/generateMetaTags.js +38 -0
- package/dist/esm/getBrowserslist.js +7 -0
- package/dist/esm/getCoreJsVersion.js +13 -0
- package/dist/esm/getEntryOptions.js +17 -0
- package/dist/esm/getPackageManager.js +32 -0
- package/dist/esm/getPort.js +59 -0
- package/dist/esm/getServerConfig.js +14 -0
- package/dist/esm/getTargetDir.js +8 -0
- package/dist/esm/import.js +9 -0
- package/dist/esm/index.js +44 -0
- package/dist/esm/is/index.js +72 -0
- package/dist/esm/is/nodeEnv.js +12 -0
- package/dist/esm/is/platform.js +6 -0
- package/dist/esm/is/type.js +34 -0
- package/dist/esm/logger.js +100 -0
- package/dist/esm/monorepo.js +87 -0
- package/dist/esm/nodeEnv.js +30 -0
- package/dist/esm/path.js +50 -0
- package/dist/esm/pathSerializer.js +46 -0
- package/dist/esm/plugin.js +23 -0
- package/dist/esm/prettyInstructions.js +95 -0
- package/dist/esm/printBuildError.js +34 -0
- package/dist/esm/react.js +20 -0
- package/dist/esm/readTsConfig.js +13 -0
- package/dist/esm/removeSlash.js +8 -0
- package/dist/esm/resolve.js +38 -0
- package/dist/esm/routes.js +24 -0
- package/dist/esm/runtime/index.js +1 -0
- package/dist/esm/runtime/parsed.js +16 -0
- package/dist/esm/runtimeExports.js +40 -0
- package/dist/esm/ssr.js +6 -0
- package/dist/esm/storage.js +42 -0
- package/dist/esm/testUtils.js +15 -0
- package/dist/esm/types.js +0 -0
- package/dist/esm/universal/constants.js +6 -0
- package/dist/esm/universal/formatWebpack.js +77 -0
- package/dist/esm/universal/nestedRoutes.js +93 -0
- package/dist/esm/universal/remixRouter.js +1 -0
- package/dist/esm/universal/serialize.js +7 -0
- package/dist/esm/version.js +25 -0
- package/dist/esm/wait.js +6 -0
- package/dist/esm/watch.js +36 -0
- package/dist/{constants.d.ts → types/constants.d.ts} +6 -2
- package/dist/{prettyInstructions.d.ts → types/prettyInstructions.d.ts} +4 -1
- package/dist/types/runtime/index.d.ts +1 -0
- package/dist/types/runtime/parsed.d.ts +1 -0
- package/package.json +118 -63
- package/dist/emptyDir.js +0 -52
- package/dist/nodeEnv.js +0 -81
- package/dist/version.js +0 -92
- /package/dist/{FileSizeReporter.js → cjs/FileSizeReporter.js} +0 -0
- /package/dist/{applyOptionsChain.js → cjs/applyOptionsChain.js} +0 -0
- /package/dist/{chainId.js → cjs/chainId.js} +0 -0
- /package/dist/{clearConsole.js → cjs/clearConsole.js} +0 -0
- /package/dist/{commands.js → cjs/commands.js} +0 -0
- /package/dist/{compiled.js → cjs/compiled.js} +0 -0
- /package/dist/{debug.js → cjs/debug.js} +0 -0
- /package/dist/{ensureAbsolutePath.js → cjs/ensureAbsolutePath.js} +0 -0
- /package/dist/{ensureArray.js → cjs/ensureArray.js} +0 -0
- /package/dist/{findExists.js → cjs/findExists.js} +0 -0
- /package/dist/{generateMetaTags.js → cjs/generateMetaTags.js} +0 -0
- /package/dist/{getBrowserslist.js → cjs/getBrowserslist.js} +0 -0
- /package/dist/{getCoreJsVersion.js → cjs/getCoreJsVersion.js} +0 -0
- /package/dist/{getTargetDir.js → cjs/getTargetDir.js} +0 -0
- /package/dist/{import.js → cjs/import.js} +0 -0
- /package/dist/{index.js → cjs/index.js} +0 -0
- /package/dist/{is → cjs/is}/nodeEnv.js +0 -0
- /package/dist/{is → cjs/is}/platform.js +0 -0
- /package/dist/{is → cjs/is}/type.js +0 -0
- /package/dist/{plugin.js → cjs/plugin.js} +0 -0
- /package/dist/{printBuildError.js → cjs/printBuildError.js} +0 -0
- /package/dist/{readTsConfig.js → cjs/readTsConfig.js} +0 -0
- /package/dist/{removeSlash.js → cjs/removeSlash.js} +0 -0
- /package/dist/{resolve.js → cjs/resolve.js} +0 -0
- /package/dist/{routes.js → cjs/routes.js} +0 -0
- /package/dist/{ssr.js → cjs/ssr.js} +0 -0
- /package/dist/{storage.js → cjs/storage.js} +0 -0
- /package/dist/{testUtils.js → cjs/testUtils.js} +0 -0
- /package/dist/{types.js → cjs/types.js} +0 -0
- /package/dist/{universal → cjs/universal}/constants.js +0 -0
- /package/dist/{universal → cjs/universal}/formatWebpack.js +0 -0
- /package/dist/{universal → cjs/universal}/remixRouter.js +0 -0
- /package/dist/{universal → cjs/universal}/serialize.js +0 -0
- /package/dist/{wait.js → cjs/wait.js} +0 -0
- /package/{compiled → dist/compiled}/address/index.js +0 -0
- /package/{compiled → dist/compiled}/address/lib/address.d.ts +0 -0
- /package/{compiled → dist/compiled}/address/package.json +0 -0
- /package/{compiled → dist/compiled}/ajv/codegen.js +0 -0
- /package/{compiled → dist/compiled}/ajv/index.js +0 -0
- /package/{compiled → dist/compiled}/ajv/license +0 -0
- /package/{compiled → dist/compiled}/ajv/package.json +0 -0
- /package/{compiled → dist/compiled}/ajv/types/ajv.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/codegen/code.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/codegen/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/codegen/scope.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/errors.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/ref_error.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/resolve.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/rules.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/util.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/validate/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/compile/validate/subschema.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/core.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/runtime/validation_error.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/types/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/types/json-schema.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/types/jtd-schema.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/types/vocabularies/errors.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv/uri-js.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv-keywords/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/ajv-keywords/index.js +0 -0
- /package/{compiled → dist/compiled}/ajv-keywords/license +0 -0
- /package/{compiled → dist/compiled}/ajv-keywords/package.json +0 -0
- /package/{compiled → dist/compiled}/better-ajv-errors/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/better-ajv-errors/index.js +0 -0
- /package/{compiled → dist/compiled}/better-ajv-errors/license +0 -0
- /package/{compiled → dist/compiled}/better-ajv-errors/package.json +0 -0
- /package/{compiled → dist/compiled}/browserslist/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/browserslist/index.js +0 -0
- /package/{compiled → dist/compiled}/browserslist/license +0 -0
- /package/{compiled → dist/compiled}/browserslist/package.json +0 -0
- /package/{compiled → dist/compiled}/chalk/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/chalk/index.js +0 -0
- /package/{compiled → dist/compiled}/chalk/license +0 -0
- /package/{compiled → dist/compiled}/chalk/package.json +0 -0
- /package/{compiled → dist/compiled}/chokidar/anymatch/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/chokidar/fsevents.node +0 -0
- /package/{compiled → dist/compiled}/chokidar/index.js +0 -0
- /package/{compiled → dist/compiled}/chokidar/license +0 -0
- /package/{compiled → dist/compiled}/chokidar/package.json +0 -0
- /package/{compiled → dist/compiled}/chokidar/types/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/commander/index.js +0 -0
- /package/{compiled → dist/compiled}/commander/license +0 -0
- /package/{compiled → dist/compiled}/commander/package.json +0 -0
- /package/{compiled → dist/compiled}/commander/typings/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/debug/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/debug/index.js +0 -0
- /package/{compiled → dist/compiled}/debug/license +0 -0
- /package/{compiled → dist/compiled}/debug/ms/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/debug/package.json +0 -0
- /package/{compiled → dist/compiled}/dotenv/index.js +0 -0
- /package/{compiled → dist/compiled}/dotenv/license +0 -0
- /package/{compiled → dist/compiled}/dotenv/package.json +0 -0
- /package/{compiled → dist/compiled}/dotenv/types/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/dotenv-expand/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/dotenv-expand/index.js +0 -0
- /package/{compiled → dist/compiled}/dotenv-expand/license +0 -0
- /package/{compiled → dist/compiled}/dotenv-expand/package.json +0 -0
- /package/{compiled → dist/compiled}/execa/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/execa/index.js +0 -0
- /package/{compiled → dist/compiled}/execa/license +0 -0
- /package/{compiled → dist/compiled}/execa/package.json +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/adapters/fs.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/providers/async.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/settings.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.scandir/out/types/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/adapters/fs.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/providers/async.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/settings.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.stat/out/types/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/providers/async.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/readers/async.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/readers/reader.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/settings.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/@nodelib/fs.walk/out/types/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/index.js +0 -0
- /package/{compiled → dist/compiled}/fast-glob/license +0 -0
- /package/{compiled → dist/compiled}/fast-glob/out/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/out/managers/tasks.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/out/settings.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/out/types/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/fast-glob/package.json +0 -0
- /package/{compiled → dist/compiled}/filesize/filesize.d.ts +0 -0
- /package/{compiled → dist/compiled}/filesize/index.js +0 -0
- /package/{compiled → dist/compiled}/filesize/license +0 -0
- /package/{compiled → dist/compiled}/filesize/package.json +0 -0
- /package/{compiled → dist/compiled}/fs-extra/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/fs-extra/index.js +0 -0
- /package/{compiled → dist/compiled}/fs-extra/license +0 -0
- /package/{compiled → dist/compiled}/fs-extra/package.json +0 -0
- /package/{compiled → dist/compiled}/glob/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/glob/index.js +0 -0
- /package/{compiled → dist/compiled}/glob/license +0 -0
- /package/{compiled → dist/compiled}/glob/minimatch/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/glob/package.json +0 -0
- /package/{compiled → dist/compiled}/globby/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/globby/index.js +0 -0
- /package/{compiled → dist/compiled}/globby/license +0 -0
- /package/{compiled → dist/compiled}/globby/package.json +0 -0
- /package/{compiled → dist/compiled}/gzip-size/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/gzip-size/index.js +0 -0
- /package/{compiled → dist/compiled}/gzip-size/license +0 -0
- /package/{compiled → dist/compiled}/gzip-size/package.json +0 -0
- /package/{compiled → dist/compiled}/import-lazy/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/import-lazy/index.js +0 -0
- /package/{compiled → dist/compiled}/import-lazy/license +0 -0
- /package/{compiled → dist/compiled}/import-lazy/package.json +0 -0
- /package/{compiled → dist/compiled}/inquirer/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/inquirer/index.js +0 -0
- /package/{compiled → dist/compiled}/inquirer/lib/objects/choice.d.ts +0 -0
- /package/{compiled → dist/compiled}/inquirer/lib/objects/choices.d.ts +0 -0
- /package/{compiled → dist/compiled}/inquirer/lib/objects/separator.d.ts +0 -0
- /package/{compiled → dist/compiled}/inquirer/lib/ui/baseUI.d.ts +0 -0
- /package/{compiled → dist/compiled}/inquirer/lib/ui/bottom-bar.d.ts +0 -0
- /package/{compiled → dist/compiled}/inquirer/lib/ui/prompt.d.ts +0 -0
- /package/{compiled → dist/compiled}/inquirer/license +0 -0
- /package/{compiled → dist/compiled}/inquirer/package.json +0 -0
- /package/{compiled → dist/compiled}/inquirer/through/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/js-yaml/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/js-yaml/index.js +0 -0
- /package/{compiled → dist/compiled}/js-yaml/license +0 -0
- /package/{compiled → dist/compiled}/js-yaml/package.json +0 -0
- /package/{compiled → dist/compiled}/json5/index.js +0 -0
- /package/{compiled → dist/compiled}/json5/lib/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/json5/lib/parse.d.ts +0 -0
- /package/{compiled → dist/compiled}/json5/lib/stringify.d.ts +0 -0
- /package/{compiled → dist/compiled}/json5/package.json +0 -0
- /package/{compiled → dist/compiled}/lodash/common/array.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/collection.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/common.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/date.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/function.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/lang.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/math.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/number.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/object.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/seq.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/string.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/common/util.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/lodash/index.js +0 -0
- /package/{compiled → dist/compiled}/lodash/license +0 -0
- /package/{compiled → dist/compiled}/lodash/package.json +0 -0
- /package/{compiled → dist/compiled}/mime-types/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/mime-types/index.js +0 -0
- /package/{compiled → dist/compiled}/mime-types/license +0 -0
- /package/{compiled → dist/compiled}/mime-types/package.json +0 -0
- /package/{compiled → dist/compiled}/minimist/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/minimist/index.js +0 -0
- /package/{compiled → dist/compiled}/minimist/license +0 -0
- /package/{compiled → dist/compiled}/minimist/package.json +0 -0
- /package/{compiled → dist/compiled}/nanoid/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/nanoid/index.js +0 -0
- /package/{compiled → dist/compiled}/nanoid/license +0 -0
- /package/{compiled → dist/compiled}/nanoid/package.json +0 -0
- /package/{compiled → dist/compiled}/ora/cli-spinners/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/ora/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/ora/index.js +0 -0
- /package/{compiled → dist/compiled}/ora/license +0 -0
- /package/{compiled → dist/compiled}/ora/package.json +0 -0
- /package/{compiled → dist/compiled}/pkg-up/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/pkg-up/index.js +0 -0
- /package/{compiled → dist/compiled}/pkg-up/license +0 -0
- /package/{compiled → dist/compiled}/pkg-up/package.json +0 -0
- /package/{compiled → dist/compiled}/recursive-readdir/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/recursive-readdir/index.js +0 -0
- /package/{compiled → dist/compiled}/recursive-readdir/license +0 -0
- /package/{compiled → dist/compiled}/recursive-readdir/package.json +0 -0
- /package/{compiled → dist/compiled}/schema-utils3/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/schema-utils3/index.js +0 -0
- /package/{compiled → dist/compiled}/schema-utils3/license +0 -0
- /package/{compiled → dist/compiled}/schema-utils3/package.json +0 -0
- /package/{compiled → dist/compiled}/semver/classes/comparator.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/classes/range.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/classes/semver.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/clean.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/cmp.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/coerce.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/compare-build.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/compare-loose.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/compare.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/diff.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/eq.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/gt.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/gte.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/inc.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/lt.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/lte.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/major.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/minor.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/neq.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/parse.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/patch.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/prerelease.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/rcompare.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/rsort.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/satisfies.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/sort.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/functions/valid.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/index.js +0 -0
- /package/{compiled → dist/compiled}/semver/internals/identifiers.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/license +0 -0
- /package/{compiled → dist/compiled}/semver/package.json +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/gtr.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/intersects.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/ltr.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/max-satisfying.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/min-satisfying.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/min-version.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/outside.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/simplify.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/subset.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/to-comparators.d.ts +0 -0
- /package/{compiled → dist/compiled}/semver/ranges/valid.d.ts +0 -0
- /package/{compiled → dist/compiled}/signale/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/signale/index.js +0 -0
- /package/{compiled → dist/compiled}/signale/package.json +0 -0
- /package/{compiled → dist/compiled}/slash/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/slash/index.js +0 -0
- /package/{compiled → dist/compiled}/slash/license +0 -0
- /package/{compiled → dist/compiled}/slash/package.json +0 -0
- /package/{compiled → dist/compiled}/strip-ansi/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/strip-ansi/index.js +0 -0
- /package/{compiled → dist/compiled}/strip-ansi/license +0 -0
- /package/{compiled → dist/compiled}/strip-ansi/package.json +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/index.js +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/lib/config-loader.d.ts +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/lib/filesystem.d.ts +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/lib/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/lib/mapping-entry.d.ts +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/lib/match-path-async.d.ts +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/lib/match-path-sync.d.ts +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/lib/register.d.ts +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/lib/try-path.d.ts +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/lib/tsconfig-loader.d.ts +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/license +0 -0
- /package/{compiled → dist/compiled}/tsconfig-paths/package.json +0 -0
- /package/{compiled → dist/compiled}/upath/index.js +0 -0
- /package/{compiled → dist/compiled}/upath/license +0 -0
- /package/{compiled → dist/compiled}/upath/package.json +0 -0
- /package/{compiled → dist/compiled}/upath/upath.d.ts +0 -0
- /package/{compiled → dist/compiled}/url-join/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/url-join/index.js +0 -0
- /package/{compiled → dist/compiled}/url-join/license +0 -0
- /package/{compiled → dist/compiled}/url-join/package.json +0 -0
- /package/{compiled → dist/compiled}/webpack-chain/index.js +0 -0
- /package/{compiled → dist/compiled}/webpack-chain/license +0 -0
- /package/{compiled → dist/compiled}/webpack-chain/package.json +0 -0
- /package/{compiled → dist/compiled}/webpack-chain/types/index.d.ts +0 -0
- /package/{compiled → dist/compiled}/webpack-dev-middleware/index.js +0 -0
- /package/{compiled → dist/compiled}/webpack-dev-middleware/license +0 -0
- /package/{compiled → dist/compiled}/webpack-dev-middleware/package.json +0 -0
- /package/{compiled → dist/compiled}/webpack-dev-middleware/types/index.d.ts +0 -0
- /package/dist/{FileSizeReporter.d.ts → types/FileSizeReporter.d.ts} +0 -0
- /package/dist/{alias.d.ts → types/alias.d.ts} +0 -0
- /package/dist/{analyzeProject.d.ts → types/analyzeProject.d.ts} +0 -0
- /package/dist/{applyOptionsChain.d.ts → types/applyOptionsChain.d.ts} +0 -0
- /package/dist/{babel.d.ts → types/babel.d.ts} +0 -0
- /package/dist/{chainId.d.ts → types/chainId.d.ts} +0 -0
- /package/dist/{clearConsole.d.ts → types/clearConsole.d.ts} +0 -0
- /package/dist/{commands.d.ts → types/commands.d.ts} +0 -0
- /package/dist/{compatRequire.d.ts → types/compatRequire.d.ts} +0 -0
- /package/dist/{compiled.d.ts → types/compiled.d.ts} +0 -0
- /package/dist/{debug.d.ts → types/debug.d.ts} +0 -0
- /package/dist/{emptyDir.d.ts → types/emptyDir.d.ts} +0 -0
- /package/dist/{ensureAbsolutePath.d.ts → types/ensureAbsolutePath.d.ts} +0 -0
- /package/dist/{ensureArray.d.ts → types/ensureArray.d.ts} +0 -0
- /package/dist/{findExists.d.ts → types/findExists.d.ts} +0 -0
- /package/dist/{generateMetaTags.d.ts → types/generateMetaTags.d.ts} +0 -0
- /package/dist/{getBrowserslist.d.ts → types/getBrowserslist.d.ts} +0 -0
- /package/dist/{getCoreJsVersion.d.ts → types/getCoreJsVersion.d.ts} +0 -0
- /package/dist/{getEntryOptions.d.ts → types/getEntryOptions.d.ts} +0 -0
- /package/dist/{getPackageManager.d.ts → types/getPackageManager.d.ts} +0 -0
- /package/dist/{getPort.d.ts → types/getPort.d.ts} +0 -0
- /package/dist/{getServerConfig.d.ts → types/getServerConfig.d.ts} +0 -0
- /package/dist/{getTargetDir.d.ts → types/getTargetDir.d.ts} +0 -0
- /package/dist/{import.d.ts → types/import.d.ts} +0 -0
- /package/dist/{index.d.ts → types/index.d.ts} +0 -0
- /package/dist/{is → types/is}/index.d.ts +0 -0
- /package/dist/{is → types/is}/nodeEnv.d.ts +0 -0
- /package/dist/{is → types/is}/platform.d.ts +0 -0
- /package/dist/{is → types/is}/type.d.ts +0 -0
- /package/dist/{logger.d.ts → types/logger.d.ts} +0 -0
- /package/dist/{monorepo.d.ts → types/monorepo.d.ts} +0 -0
- /package/dist/{nodeEnv.d.ts → types/nodeEnv.d.ts} +0 -0
- /package/dist/{path.d.ts → types/path.d.ts} +0 -0
- /package/dist/{pathSerializer.d.ts → types/pathSerializer.d.ts} +0 -0
- /package/dist/{plugin.d.ts → types/plugin.d.ts} +0 -0
- /package/dist/{printBuildError.d.ts → types/printBuildError.d.ts} +0 -0
- /package/dist/{react.d.ts → types/react.d.ts} +0 -0
- /package/dist/{readTsConfig.d.ts → types/readTsConfig.d.ts} +0 -0
- /package/dist/{removeSlash.d.ts → types/removeSlash.d.ts} +0 -0
- /package/dist/{resolve.d.ts → types/resolve.d.ts} +0 -0
- /package/dist/{routes.d.ts → types/routes.d.ts} +0 -0
- /package/dist/{runtimeExports.d.ts → types/runtimeExports.d.ts} +0 -0
- /package/dist/{ssr.d.ts → types/ssr.d.ts} +0 -0
- /package/dist/{storage.d.ts → types/storage.d.ts} +0 -0
- /package/dist/{testUtils.d.ts → types/testUtils.d.ts} +0 -0
- /package/dist/{types.d.ts → types/types.d.ts} +0 -0
- /package/dist/{universal → types/universal}/constants.d.ts +0 -0
- /package/dist/{universal → types/universal}/formatWebpack.d.ts +0 -0
- /package/dist/{universal → types/universal}/nestedRoutes.d.ts +0 -0
- /package/dist/{universal → types/universal}/remixRouter.d.ts +0 -0
- /package/dist/{universal → types/universal}/serialize.d.ts +0 -0
- /package/dist/{version.d.ts → types/version.d.ts} +0 -0
- /package/dist/{wait.d.ts → types/wait.d.ts} +0 -0
- /package/dist/{watch.d.ts → types/watch.d.ts} +0 -0
package/dist/esm/path.js
ADDED
@@ -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,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
|
+
};
|
package/dist/esm/ssr.js
ADDED
@@ -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,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";
|