create-docusaurus 0.0.1 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/README.md +29 -5
  2. package/bin/index.js +56 -1
  3. package/lib/.tsbuildinfo +1 -0
  4. package/lib/index.d.ts +11 -0
  5. package/lib/index.js +235 -0
  6. package/package.json +19 -3
  7. package/src/index.ts +289 -0
  8. package/templates/README.md +8 -0
  9. package/templates/classic/docusaurus.config.js +118 -0
  10. package/templates/classic/package.json +40 -0
  11. package/templates/classic/src/components/HomepageFeatures.js +64 -0
  12. package/templates/classic/src/components/HomepageFeatures.module.css +11 -0
  13. package/templates/classic/src/css/custom.css +28 -0
  14. package/templates/classic/src/pages/index.js +40 -0
  15. package/templates/classic/src/pages/index.module.css +23 -0
  16. package/templates/classic-typescript/package.json +46 -0
  17. package/templates/classic-typescript/src/components/HomepageFeatures.tsx +76 -0
  18. package/templates/classic-typescript/src/pages/index.tsx +40 -0
  19. package/templates/classic-typescript/tsconfig.json +7 -0
  20. package/templates/facebook/.eslintrc.js +60 -0
  21. package/templates/facebook/.prettierignore +3 -0
  22. package/templates/facebook/.prettierrc +9 -0
  23. package/templates/facebook/.stylelintrc.js +13 -0
  24. package/templates/facebook/README.md +41 -0
  25. package/templates/facebook/babel.config.js +12 -0
  26. package/templates/facebook/docusaurus.config.js +152 -0
  27. package/templates/facebook/gitignore +23 -0
  28. package/templates/facebook/package.json +56 -0
  29. package/templates/facebook/sidebars.js +35 -0
  30. package/templates/facebook/src/css/custom.css +33 -0
  31. package/templates/facebook/src/pages/index.js +111 -0
  32. package/templates/facebook/src/pages/styles.module.css +44 -0
  33. package/templates/facebook/static/img/oss_logo.png +0 -0
  34. package/templates/shared/README.md +33 -0
  35. package/templates/shared/babel.config.js +3 -0
  36. package/templates/shared/blog/2019-05-28-first-blog-post.md +12 -0
  37. package/templates/shared/blog/2019-05-29-long-blog-post.md +44 -0
  38. package/templates/shared/blog/2021-08-01-mdx-blog-post.mdx +20 -0
  39. package/templates/shared/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg +0 -0
  40. package/templates/shared/blog/2021-08-26-welcome/index.md +25 -0
  41. package/templates/shared/blog/authors.yml +17 -0
  42. package/templates/shared/docs/intro.md +35 -0
  43. package/templates/shared/docs/tutorial-basics/_category_.json +4 -0
  44. package/templates/shared/docs/tutorial-basics/congratulations.md +21 -0
  45. package/templates/shared/docs/tutorial-basics/create-a-blog-post.md +34 -0
  46. package/templates/shared/docs/tutorial-basics/create-a-document.md +55 -0
  47. package/templates/shared/docs/tutorial-basics/create-a-page.md +43 -0
  48. package/templates/shared/docs/tutorial-basics/deploy-your-site.md +31 -0
  49. package/templates/shared/docs/tutorial-basics/markdown-features.mdx +144 -0
  50. package/templates/shared/docs/tutorial-extras/_category_.json +4 -0
  51. package/templates/shared/docs/tutorial-extras/manage-docs-versions.md +55 -0
  52. package/templates/shared/docs/tutorial-extras/translate-your-site.md +88 -0
  53. package/templates/shared/gitignore +20 -0
  54. package/templates/shared/sidebars.js +26 -0
  55. package/templates/shared/src/pages/markdown-page.md +7 -0
  56. package/templates/shared/static/.nojekyll +0 -0
  57. package/templates/shared/static/img/docusaurus.png +0 -0
  58. package/templates/shared/static/img/favicon.ico +0 -0
  59. package/templates/shared/static/img/logo.svg +1 -0
  60. package/templates/shared/static/img/tutorial/docsVersionDropdown.png +0 -0
  61. package/templates/shared/static/img/tutorial/localeDropdown.png +0 -0
  62. package/templates/shared/static/img/undraw_docusaurus_mountain.svg +170 -0
  63. package/templates/shared/static/img/undraw_docusaurus_react.svg +169 -0
  64. package/templates/shared/static/img/undraw_docusaurus_tree.svg +1 -0
  65. package/tsconfig.json +11 -0
package/README.md CHANGED
@@ -1,15 +1,39 @@
1
1
  # `create-docusaurus`
2
2
 
3
- A support package that allows to use:
3
+ Create Docusaurus apps easily with simplified commands:
4
4
 
5
5
  ```bash
6
- npx init docusaurus
6
+ npm init docusaurus
7
7
  ```
8
8
 
9
- Or
10
-
11
9
  ```bash
12
10
  yarn create docusaurus
13
11
  ```
14
12
 
15
- ---
13
+ ## Usage
14
+
15
+ Please see the [installation documentation](https://docusaurus.io/docs/installation).
16
+
17
+ ## For maintainers
18
+
19
+ For Docusaurus maintainers, templates can be tested with:
20
+
21
+ ```bash
22
+ cd `git rev-parse --show-toplevel` # Back to repo root
23
+ rm -rf test-website
24
+ yarn create-docusaurus test-website classic
25
+ cd test-website
26
+ yarn start
27
+ ```
28
+
29
+ Note: `test-website` is not part of the workspace and use packages from npm.
30
+
31
+ Use the following to test the templates against local packages:
32
+
33
+ ```bash
34
+ cd `git rev-parse --show-toplevel` # Back to repo root
35
+ rm -rf test-website-in-workspace
36
+ yarn create-docusaurus test-website-in-workspace classic
37
+ cd test-website-in-workspace
38
+ yarn start
39
+ ```
package/bin/index.js CHANGED
@@ -6,4 +6,59 @@
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  */
8
8
 
9
- require('@docusaurus/init/bin/index');
9
+ const chalk = require('chalk');
10
+ const semver = require('semver');
11
+ const path = require('path');
12
+ const program = require('commander');
13
+ const {default: init} = require('../lib');
14
+ const requiredVersion = require('../package.json').engines.node;
15
+
16
+ if (!semver.satisfies(process.version, requiredVersion)) {
17
+ console.log(
18
+ chalk.red(`\nMinimum Node.js version not met :)`) +
19
+ chalk.yellow(
20
+ `\nYou are using Node.js ${process.version}, Requirement: Node.js ${requiredVersion}.\n`,
21
+ ),
22
+ );
23
+ process.exit(1);
24
+ }
25
+
26
+ function wrapCommand(fn) {
27
+ return (...args) =>
28
+ fn(...args).catch((err) => {
29
+ console.error(chalk.red(err.stack));
30
+ process.exitCode = 1;
31
+ });
32
+ }
33
+
34
+ program
35
+ .version(require('../package.json').version)
36
+ .usage('<command> [options]');
37
+
38
+ program
39
+ .command('init [siteName] [template] [rootDir]', {isDefault: true})
40
+ .option('--use-npm')
41
+ .option('--skip-install')
42
+ .option('--typescript')
43
+ .description('Initialize website.')
44
+ .action(
45
+ (siteName, template, rootDir = '.', {useNpm, skipInstall, typescript}) => {
46
+ wrapCommand(init)(path.resolve(rootDir), siteName, template, {
47
+ useNpm,
48
+ skipInstall,
49
+ typescript,
50
+ });
51
+ },
52
+ );
53
+
54
+ program.arguments('<command>').action((cmd) => {
55
+ program.outputHelp();
56
+ console.log(` ${chalk.red(`\n Unknown command ${chalk.yellow(cmd)}.`)}`);
57
+ console.log();
58
+ });
59
+
60
+ program.parse(process.argv);
61
+
62
+ if (!process.argv.slice(1).length) {
63
+ program.outputHelp();
64
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/prompts/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/shelljs/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/supports-color/index.d.ts","../src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/braces/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/clean-css/index.d.ts","../../../node_modules/@types/color-name/index.d.ts","../../../node_modules/@types/color-convert/conversions.d.ts","../../../node_modules/@types/color-convert/route.d.ts","../../../node_modules/@types/color-convert/index.d.ts","../../../node_modules/@types/color/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/copy-webpack-plugin/index.d.ts","../../../node_modules/@types/cssnano/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/@types/cssnano/index.d.ts","../../../node_modules/source-map-js/source-map.d.ts","../../../node_modules/postcss/lib/comment.d.ts","../../../node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/postcss/lib/rule.d.ts","../../../node_modules/postcss/lib/container.d.ts","../../../node_modules/postcss/lib/declaration.d.ts","../../../node_modules/postcss/lib/warning.d.ts","../../../node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/postcss/lib/input.d.ts","../../../node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/postcss/lib/document.d.ts","../../../node_modules/postcss/lib/root.d.ts","../../../node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/postcss/lib/processor.d.ts","../../../node_modules/postcss/lib/result.d.ts","../../../node_modules/postcss/lib/node.d.ts","../../../node_modules/postcss/lib/list.d.ts","../../../node_modules/postcss/lib/postcss.d.ts","../../../node_modules/@types/css-minimizer-webpack-plugin/index.d.ts","../../../node_modules/@types/decompress/index.d.ts","../../../node_modules/@types/dedent/index.d.ts","../../../node_modules/@types/detect-port/index.d.ts","../../../node_modules/@types/got/index.d.ts","../../../node_modules/@types/download/index.d.ts","../../../node_modules/@types/escape-html/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/github-slugger/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/history/domutils.d.ts","../../../node_modules/@types/history/createbrowserhistory.d.ts","../../../node_modules/@types/history/createhashhistory.d.ts","../../../node_modules/@types/history/creatememoryhistory.d.ts","../../../node_modules/@types/history/locationutils.d.ts","../../../node_modules/@types/history/pathutils.d.ts","../../../node_modules/@types/history/index.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/relateurl/index.d.ts","../../../node_modules/@types/html-minifier/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/html-webpack-plugin/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/ast-types/types.d.ts","../../../node_modules/ast-types/gen/namedtypes.d.ts","../../../node_modules/ast-types/gen/kinds.d.ts","../../../node_modules/ast-types/gen/builders.d.ts","../../../node_modules/ast-types/lib/types.d.ts","../../../node_modules/ast-types/lib/path.d.ts","../../../node_modules/ast-types/lib/scope.d.ts","../../../node_modules/ast-types/lib/node-path.d.ts","../../../node_modules/ast-types/lib/path-visitor.d.ts","../../../node_modules/ast-types/gen/visitor.d.ts","../../../node_modules/ast-types/main.d.ts","../../../node_modules/recast/lib/options.d.ts","../../../node_modules/recast/lib/parser.d.ts","../../../node_modules/recast/lib/printer.d.ts","../../../node_modules/recast/main.d.ts","../../../node_modules/@types/jscodeshift/src/collections/jsxelement.d.ts","../../../node_modules/@types/jscodeshift/src/collections/node.d.ts","../../../node_modules/@types/jscodeshift/src/collections/variabledeclarator.d.ts","../../../node_modules/@types/jscodeshift/src/collection.d.ts","../../../node_modules/@types/jscodeshift/src/template.d.ts","../../../node_modules/@types/jscodeshift/src/core.d.ts","../../../node_modules/@types/jscodeshift/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/katex/contrib/auto-render.d.ts","../../../node_modules/@types/katex/contrib/katex2tex.d.ts","../../../node_modules/@types/katex/contrib/index.d.ts","../../../node_modules/@types/katex/index.d.ts","../../../node_modules/@types/loader-utils/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/mdx-js__react/index.d.ts","../../../node_modules/@types/micromatch/index.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mkdirp/index.d.ts","../../../node_modules/@types/module-alias/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/nprogress/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse-numeric-range/index.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/picomatch/lib/constants.d.ts","../../../node_modules/@types/picomatch/lib/parse.d.ts","../../../node_modules/@types/picomatch/lib/scan.d.ts","../../../node_modules/@types/picomatch/lib/picomatch.d.ts","../../../node_modules/@types/picomatch/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/react-dev-utils/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/react-helmet/index.d.ts","../../../node_modules/@types/react-loadable/index.d.ts","../../../node_modules/@types/react-router/index.d.ts","../../../node_modules/@types/react-router-config/index.d.ts","../../../node_modules/@types/react-router-dom/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/rtl-detect/index.d.ts","../../../node_modules/@types/rtlcss/index.d.ts","../../../node_modules/@types/sax/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-handler/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/stringify-object/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/@types/wait-on/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-bundle-analyzer/index.d.ts","../../../node_modules/http-proxy-middleware/dist/types.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/response-interceptor.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/fix-request-body.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/public.d.ts","../../../node_modules/http-proxy-middleware/dist/handlers/index.d.ts","../../../node_modules/http-proxy-middleware/dist/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"f54d7a33bad768b50c8512d55f38499209d95038558fea231058465f680d1e1e","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","d5afcd002167b6b03d595fb8b9630a00456b6fb9d2c5e8b6aaa30cb31bc44e2b","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"36c956a3a6dc279f1e6b77aa4b97b7b229b7d828102573ef5002de456ff5e1d9","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","6e8b894365ab993dbb55c58542598d1548fdda072c974f98b89c218891e2ba09","ddd6169dff8e5263397a9399ba7ba92521d3959f8f9dcdc27f24403dc7b751ba","508e1e25ca40ea6cde332d3232c826fcd82f456f45ae535d817754684f048f9e",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ee97aed5b4667a5c3003a1da4b108827fc64b888391417617d89b02ff134de9a","839421b494b57cd2bc0074e914130277051850eba6def6c25870056e6652640b","e18a4b529c9a05593e612130554d93a2b78b949cf1cf48c0b183071258f0e95a","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","9e8947666e44137405fd378f3a8a0515a492e967e552406c02b991c98c78fc61","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","5caa645cc390a0a8d5a031072b6b4e49218c17017cd80a63bd2557b19be13c5f","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","ee6a154ecccde26b413e89c97a0b824f25b253c4c50a3c392bcb2b4c6ba9c314","71d6da3b0150ecdcd16c08b3b546fe4cc7f53df642eccfeb03c813ee788fae0c","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"33f44d7dfe8ed95d42485149f97926d80d0f3a5d7ce7d6b5b21428a8286b51ea","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","5f7614d60b32dc66e5d665eafd10d7619eedca3a20f0e876e9ec73141735e364","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","5b8476e49f360da8548e0acfbb77344291512db4453512c7b5ec8277f1c762c3","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"105fa3d1b286795f9ac1b82f5a737db303dfe65ebc9830c1938a2bbe538a861f","da260943b775f85e1f036401223d0df60196a6402b1a24259e08ea3f6ceba0c9","f82348f8ac4f637d6ad76ef5d45577ccc0c59fbd25d8c44d55349a71a90e195a","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","65cfd1c0bc729fbc2b49fe66bc5ebddba5aa3a978c748e1d2e0d07f502238ce2","40304c033bb6e39f0eb01b106d29523950148dfc3cd547ddb500167871171281","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","81bf524a00ab23da11642375b81429cd73f21e2f380c139da6485136f21292e4","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","8dc44c4ad7e254d4404a302e5098e83ab9aae1d65e861c15fb67a7f419051524","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"61b60d145059c3c8e3c7b484713191b6d0b70999bcb11f2b26286b15926a2b5f","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","b086770ba4845bca9abaa0cc7519fadfedc10e98301cd740b63c869f137040fa","ef4f3614064e7f2eb68c3271e08d3caf38df7f83be17c73a1d47e1b1800ee9ae","aec0cabbdfacf43db998d8e50ee6f1e72131d24b5018dfb84f14806717baa0a6","adc1bcbe46a680d894ea5be9f05e0baa43652bd9125a0302623d1afd0dc03b6c","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","13e521f4402f90bde98f8820045ee230168810f98f818b61f99cac728abd17a3","0475e7b7d37d065501e741e3be9b99a12ac34ff847143d83bb9d2bc9101a2625","611105c6a693c07a8a1be7fd04cda603e71b12471d4bdef34820ce653eb313e9","cba0f7d95990ecef0d0dbfc6b265fd307bd052aff61cbd7b165cbffe9d75ae24","57b9abe6f1a8b32ddbe5f28cd4dd73fa095afc8b24ae341049950f6b465872d0","a059f9bec8cf889db591a9d569f66d22e9acb4cdc67225238391c79eff517524","7786c75c1b46e93b33c63dccf689143a5f47ff451a6b3bd9b10e4801cdeadcc2","b96468bc2136fc580140702e9845d4ebf3413de9fb64093b6f7415ceb184fe5a","93fee8994db07645f6d7e241d57d3d786aaea17179c30e4d81156cc31193009d","e8966f7c424780bb0b9d411ebe13eda8555ca15aa675603316c2952bc027b0e3","df0e5f3c4a518111d160cf3bebc9a3ac7d39c6e3bfb7a21d43c304896c3015e2","c20569bc091e62ebe362b422738e82dfc7eedce351960f71af861821d434a960","bd204da7ab4613d12650bd6a4947258890ca9793df0a7a72dc4231f19d53f08e","afe79664dc4e1688ec4c6def52f793706d4763f55676eebfe72e92681e779404","6fdb5e8e7c1fc94fab356bb804c6e134133b5ad03b929ac2c1460bd49e4caa22","d7e4a5f4ccfb749c3033fafc233073b4d1dcca0249785186c589602a81f9d86f","d8f284ecc998ccc96e151e0d96109613c4901371201ddb1d7103f84199460589","4c0594efa2447408e66370c20b4de3de3bb2416cfff6b139c50ccb51e2cc6e43","825080a15a8b14b40ac8c7f90c12a5a11efb0b3857dc02195eae2a3dc98aea14","70646d9cb37b62611766d18a9bcca6cbf28ca9aec33a66244e974056ab1193f6","3f73b2be17fe55a6d9f9057cd3520e786ad21623b63001ac117ebc97452c3ffe","8f76c6bfb627f38ab44c35d1915dfa2d24d4b96307d9b6cc56df5bba246a3ab6","912989089693cac2ce78c83289b98d5d9be6d399009c5d2e06ad3edf50e7b335","81f6af9b1d8e4f9e3b7318763a1a93f909ee61e0477b41cc7f3281d9da6ca7f4",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","e300bf65972ac08167a72787e19d1b43c285c5424707194d0ba64422f6b02c77","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","78a1efd7214a25b84e08af80fe2b027c3049e52b26dfcaf777b82c759d8548c9","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","2374e4ddc628bd0af8ce7578621f1b9d08ab183f4dbacb8749eabb1a85018196","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","ab35d08aa06a7615f06dad04db7e88f27d623220f05de68a94f16d5d22e6aaea","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","0def05b4e59413659e7f1cad8b0e32858d7d272a4701457e7fea95618f6ef7db","660fa27262840c791c5b0a05ea10b07c846190f0e8a8312202f7646f1aa7813d","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","7c34d4965567c3d4814cc408340c1d268c00c7d08e2a90e3de8215a42c1ff2b9","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"5b89c37ff5dfea00195f8ea5e6fc8e086be68613297fc8152c08900a1d1fdb83","cc2dc362fc50995684e9f7e9b38ad9bdf19e74919294a694cbc05392352cad7d","abef3012ae70d98baa449664e9dda50c96fc68b0fd11a592d6590d85bb89cd10","456e83839c811cedebb65c8b05027120336b3bd6920259817d728ffc52d41e2f","ea79d9641e700b2b4a04a857ed1ef692c4caf988017fbabd64c4111f7c287673","0a90b9435b81f45b88c5fb8d30e85b77d3508eb0760dc40b9fb825fd29f92375","8cd7362102d928e21b291a013f80fc68a038d4506d26ea9948c676e3fa1110d9","90f6830fb380f4d2b69df018343ae80ce92991e85a0d7be8d214c643b39d1175","1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","a1d51fd5a8f9c1c038799a43c038397ca3ed99ee73cc0b0aada897e7cc8aca91","6c9708ae545db5f8deb8ef774d412fd1b46adade794664d7c6cfd0a1f6dfd64f","9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","67aee88594abc44cd58820dea2ed1a9d373c1c2a59941234e4abe797464bc4da","c127a09e87ad20839582ac29f6ee013822a3e24f8820f5cf47d6c6a0e00b9113","f8cb94e0dffd21068a952754ec67d01d35a15fa61bd3af951f949e9b8bde7976","9928c4f48144f7d79716955310c857518d21ada0fcb7017fbf5921e547320cb8","3c7ef314f6691dbba43cb1310a82d610ea648cc4498cd685c3e25442ea2d98a0","2305508907ae4c993dda584411bfedac5821b8a55853caeebf2341f58b2fa027","187cfee5bd6b9f2fd8bc98cff0e32855cc10b5cc63d87727fe78de9e58eba818","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","d5233d3816d390f80493f4e678f3437b5af677452e6401e8e23641108339b9e0","1ced83d3606cfe4a0d2d98c24873b4147ac4c1b9beacb1d1dd0d8bacd3a00220","42c7f325d2075cf80f65ef6225692605b6516602209175d29281c7a53838d28f","f667b528eae7dbdd854691d8f654e33f664e0a6054fdd696fced817c778fc7f1","b49afdc0206971f3baf6cff99795593dcf6e97d7dca096f8bfda3b0e0a190a15","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"7b4a3453c60663af7f58636bf4673bfcc540d83ce1c41b816a5cc2e924009880","affectsGlobalScope":true},"ac7c35cc5643ab7f4e2884aa0a383d8ac5cd3e995cc7f12349395192a4361c73","1a255ad66d2b50f7b42eca69228b9587878cf06900780ad57a306a933c6eaeb4","ef8abba6ea693cf4ecf4de2d5e6fc08c5a55d06bd55e1e94e048458fe245a1fe","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6396a7a06f3ef0fc31a7c89330e015146b78a2256b030c698b6d404594c37b8f","8532473226ad6d5ee129cb9566b7d50a5749dc7fefed687901ed912f63519f14","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","3c17de487f67fd2ce7a70090b19e791b0388ed9cb60cdbdc7a49277094ffc413","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","cf64eeeaef3601863fba2302368ec01bd9a991a24d39f68ddc9a525ffa20f1cc","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","c0ad01cd660e5b8478c46ba9eda9bb60057de0744b3436fab3ce1ab764109da9","b90c23a457c16f77a282531a5caba5c911d2252eb097f3193a8ee2df6a3f21a2","8f9aa0f1f409380d4dbd5c9f5f2e4af828e123095891dd0efc5bb999f8d1a301","578872fce2002aad31ff7d6e5f539da82f3f040777f79a8ad77e6250da78f42c","2c62313d703a4e95d56aae612fba35dc0eca38e399ed9729ee27facf64e9b993","92ae0192291b388db0aa580fee55d9977740e568d69b1ea2951955084936aed0","f142847486040d476276933f02f4fe18b50196d14d8774be7c4bc221dad4d90b","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10","b5478b9a935cf14fe43a00f80dee3805b5f5f6d33be9d96fae7babea0e0dad76","b4dfafe583b829a382edccbe32303535d0785f0c02ba7f04418e2a81de97af8a","84b93958baf05d4d1dfd5e3583df4789257a8ac751a6046bce466771df6059fb",{"version":"527840e23d438abab6cac9bdd4672c888cbaf5abc54e7da1ee0915aaba06dda6","affectsGlobalScope":true},"f8116d99ea6244e8b1492a9229b5d7e46e66f3fa21691d356ff173f03a14b6c9","9fa083ffb459128013c5b101df83124ad2636d9ba1185f105567416ca550e8f9","341f07a69f65cbae19fc6ccf3c7ffe432365606d473d64d9be3d358ee2e86070","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","257eb160efb706e5d8e4ffa48d940e6c471e03bd19470537368c0599a78fb755","6e199fa01a463a67a34603881ff8862f94b2f88ad2384ae7808b2521638ed43a","f5559569170baba17cd175273efbdaa891d045e96cf481af0c9d5677d224c0e9","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","5192f9a6469f849e0863616b668fde54bcd6704394b4bfbd115691865f66d761","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","d51a4e4450ee23d941db79652c660ca2612691dba235fd5d14d4b2a622c72312","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","2905bf42cddf7ba20c88922d36b7afa5431523c1cab119fdb38bf5baab02adf1","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"805d1cf8aa6aeb6f12c7b0b1c5da1e9fc3f1814052703ebf5e54b694aaada983","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","cd6a7c1c2a6461c6868601ca2144a41f8ee6d4a85d4b4cf1deb651e6c2ebc9e5","a5ff9638738de5605b52e777ee4d27112ac6d7aaf6f2aa38c750edb8c7516ad3","59115d08fbd0d93bbb2af3fe5b914194fea2906945f2ee08e264b96c7e8601fe","f90d85d4cb38445499bdb7e7b013e4f64d99d157a6fa0843e998495ceb27b520","94ae892ab0c0b2800dbd817ffd0a5bd6cfb60a0cc4ce6860a9f965712cc3eb5d","901becb8779e1089442378fda5623e607ee4588762a32e7692436f1ea81cf848","8286d84d2567b713fd6a1fdfbb1a0abc8cfa668ee1e0e83d7dd4ade5761f2750","f28dffc6bf9bbd8b9dc156aadb74d11de7faabf547eb9f0aebb8cd03e8750a6c","3ccfa874d9f580967b87bffd360124588743fd9d81c6a843ae71143e7c0a0acd","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"importHelpers":true,"jsx":2,"module":1,"noEmitHelpers":true,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[111],[111,112,113,114,115],[111,113],[62,90,117],[59,62,82,90,120,121,122],[62,64,90,124],[126],[127,128],[127],[129],[82,90,133],[62,90],[90,142],[142,145,163],[144],[124],[90],[90,165,168],[135,173],[135,136,171,172],[173],[59,62,90,131,132],[118,132,133,176],[60,90],[59,90,93],[62,64,76,82,90],[180],[182,188],[183,184,185,186,187],[188],[125,189,190],[141,142,191],[59,62,64,67,76,82,90],[195],[195,196],[202,204],[227],[211,214,221,222,223,224],[214,217,225],[211,214,217,225],[211,214,217,221,222,224,225,226],[233],[230,231],[232],[59,90],[96,98,99,100,101,102,103,104,105,106,107,108],[96,97,99,100,101,102,103,104,105,106,107,108],[97,98,99,100,101,102,103,104,105,106,107,108],[96,97,98,100,101,102,103,104,105,106,107,108],[96,97,98,99,101,102,103,104,105,106,107,108],[96,97,98,99,100,102,103,104,105,106,107,108],[96,97,98,99,100,101,103,104,105,106,107,108],[96,97,98,99,100,101,102,104,105,106,107,108],[96,97,98,99,100,101,102,103,105,106,107,108],[96,97,98,99,100,101,102,103,104,106,107,108],[96,97,98,99,100,101,102,103,104,105,107,108],[96,97,98,99,100,101,102,103,104,105,106,108],[96,97,98,99,100,101,102,103,104,105,106,107],[240],[119],[62,82,90,247,248],[59,60,67,76],[51,59,67],[83],[55,60,68],[76],[57,59,67],[59],[59,61,76,82],[60],[67,76,82],[59,60,62,67,76,79,82],[62,76,79,82],[47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89],[82],[57,59,76],[49],[81],[74,83,85],[67],[73],[59,61,76,82,85],[258],[255,256,257],[76,90],[188,240,267],[188,240],[236,237,238,239],[62,76,90],[159,163],[275,314],[275,299,314],[314],[275],[275,300,314],[275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313],[300,314],[60,62,90],[62,90,175],[51,90,94],[320],[79,90],[62,64,134,142,176,177,344],[90,325,326,327,328,329,330,331,332,333,334,335],[324,325,334],[325,334],[316,324,325,334],[324,325,326,327,328,329,330,331,332,333,335],[325],[55,324,334],[55,90,124,141,189,323,336],[346],[208,209],[208],[207,209,211],[208,214,215],[207,211,212,213],[207,211,214,216],[207,211],[207],[207,208,210],[207,208,210,211,212,214,215,216],[62,90,339],[342],[340,341],[339,343],[62,67,90,177,194],[198,199],[198,199,200,201],[150],[150,161],[147,148,149,151,161],[154],[150,157,160,163],[153,163],[152,157,159,160,163],[147,148,149,150,151,152,154,155,156,157,160,163],[146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162],[146,163],[157,158,160,163],[150,156,160,163],[161],[203],[218],[217,218,219,220],[139],[136,137,138],[136,139],[135,137,139,140,141],[45,46,51,69,91,92,95,108,109]],"referencedMap":[[113,1],[116,2],[112,1],[114,3],[115,1],[118,4],[123,5],[125,6],[127,7],[129,8],[128,9],[130,10],[134,11],[117,12],[143,13],[164,14],[145,15],[144,16],[165,17],[169,18],[174,19],[173,20],[172,21],[133,22],[177,23],[91,24],[94,25],[168,26],[179,24],[181,27],[183,28],[184,28],[185,28],[188,29],[186,30],[187,30],[191,31],[193,32],[194,33],[196,34],[197,35],[205,36],[228,37],[225,38],[222,39],[223,40],[224,39],[227,41],[226,37],[230,42],[232,43],[233,44],[120,45],[234,13],[97,46],[98,47],[96,48],[99,49],[100,50],[101,51],[102,52],[103,53],[104,54],[105,55],[106,56],[107,57],[108,58],[235,27],[241,59],[242,60],[243,13],[245,24],[249,61],[51,62],[52,63],[53,64],[54,65],[55,66],[56,67],[58,68],[59,68],[60,69],[61,70],[62,71],[63,72],[64,73],[90,74],[65,68],[66,75],[67,76],[70,77],[71,78],[74,68],[75,79],[76,68],[79,80],[81,80],[82,81],[84,66],[87,82],[88,66],[259,83],[258,84],[92,85],[264,59],[265,59],[266,59],[268,86],[269,86],[267,87],[240,88],[270,17],[122,89],[272,90],[273,85],[299,91],[300,92],[275,93],[278,93],[297,91],[298,91],[288,94],[287,94],[285,91],[280,91],[293,91],[291,91],[295,91],[279,91],[292,91],[296,91],[281,91],[282,91],[294,91],[276,91],[283,91],[284,91],[286,91],[290,91],[301,95],[289,91],[277,91],[314,96],[308,95],[310,97],[309,95],[302,95],[303,95],[305,95],[307,95],[311,97],[312,97],[304,97],[306,97],[315,98],[176,99],[95,100],[321,101],[189,16],[322,102],[338,13],[345,103],[336,104],[335,105],[326,106],[327,107],[334,108],[328,107],[329,106],[330,106],[331,106],[332,109],[325,110],[333,105],[337,111],[347,112],[210,113],[209,114],[208,115],[216,116],[214,117],[215,118],[212,119],[213,120],[211,121],[217,122],[247,89],[341,123],[343,124],[342,125],[340,12],[344,126],[339,127],[200,128],[202,129],[201,128],[148,130],[147,131],[150,132],[155,133],[151,131],[156,134],[154,135],[158,136],[161,137],[163,138],[153,139],[159,140],[160,90],[157,141],[149,130],[152,142],[204,143],[218,120],[219,144],[221,145],[140,146],[139,147],[137,148],[142,149],[110,150]],"exportedModulesMap":[[113,1],[116,2],[112,1],[114,3],[115,1],[118,4],[123,5],[125,6],[127,7],[129,8],[128,9],[130,10],[134,11],[117,12],[143,13],[164,14],[145,15],[144,16],[165,17],[169,18],[174,19],[173,20],[172,21],[133,22],[177,23],[91,24],[94,25],[168,26],[179,24],[181,27],[183,28],[184,28],[185,28],[188,29],[186,30],[187,30],[191,31],[193,32],[194,33],[196,34],[197,35],[205,36],[228,37],[225,38],[222,39],[223,40],[224,39],[227,41],[226,37],[230,42],[232,43],[233,44],[120,45],[234,13],[97,46],[98,47],[96,48],[99,49],[100,50],[101,51],[102,52],[103,53],[104,54],[105,55],[106,56],[107,57],[108,58],[235,27],[241,59],[242,60],[243,13],[245,24],[249,61],[51,62],[52,63],[53,64],[54,65],[55,66],[56,67],[58,68],[59,68],[60,69],[61,70],[62,71],[63,72],[64,73],[90,74],[65,68],[66,75],[67,76],[70,77],[71,78],[74,68],[75,79],[76,68],[79,80],[81,80],[82,81],[84,66],[87,82],[88,66],[259,83],[258,84],[92,85],[264,59],[265,59],[266,59],[268,86],[269,86],[267,87],[240,88],[270,17],[122,89],[272,90],[273,85],[299,91],[300,92],[275,93],[278,93],[297,91],[298,91],[288,94],[287,94],[285,91],[280,91],[293,91],[291,91],[295,91],[279,91],[292,91],[296,91],[281,91],[282,91],[294,91],[276,91],[283,91],[284,91],[286,91],[290,91],[301,95],[289,91],[277,91],[314,96],[308,95],[310,97],[309,95],[302,95],[303,95],[305,95],[307,95],[311,97],[312,97],[304,97],[306,97],[315,98],[176,99],[95,100],[321,101],[189,16],[322,102],[338,13],[345,103],[336,104],[335,105],[326,106],[327,107],[334,108],[328,107],[329,106],[330,106],[331,106],[332,109],[325,110],[333,105],[337,111],[347,112],[210,113],[209,114],[208,115],[216,116],[214,117],[215,118],[212,119],[213,120],[211,121],[217,122],[247,89],[341,123],[343,124],[342,125],[340,12],[344,126],[339,127],[200,128],[202,129],[201,128],[148,130],[147,131],[150,132],[155,133],[151,131],[156,134],[154,135],[158,136],[161,137],[163,138],[153,139],[159,140],[160,90],[157,141],[149,130],[152,142],[204,143],[218,120],[219,144],[221,145],[140,146],[139,147],[137,148],[142,149],[110,150]],"semanticDiagnosticsPerFile":[113,111,116,112,114,115,118,119,123,125,127,129,128,126,130,134,117,143,164,145,144,165,166,167,169,170,174,171,173,172,135,133,177,91,178,94,168,179,181,183,184,185,182,188,186,187,192,191,193,121,194,195,196,197,205,206,228,225,222,223,224,227,226,136,229,230,232,231,233,120,234,97,98,96,99,100,101,102,103,104,105,106,107,108,235,241,242,175,243,93,244,245,246,248,249,47,49,50,51,52,53,54,55,56,57,58,59,60,61,48,89,62,63,64,90,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,250,251,252,253,254,259,255,256,258,257,260,261,92,238,262,132,131,263,264,265,266,268,269,267,236,240,190,270,122,271,272,273,274,239,299,300,275,278,297,298,288,287,285,280,293,291,295,279,292,296,281,282,294,276,283,284,286,290,301,289,277,314,313,308,310,309,302,303,305,307,311,312,304,306,315,176,95,316,317,318,109,319,321,320,189,180,322,338,345,336,335,326,327,334,328,329,330,331,332,325,333,324,337,346,347,138,323,210,209,208,216,214,215,212,213,211,217,207,46,237,247,341,343,342,340,344,339,198,200,202,201,199,148,147,150,155,151,156,154,158,162,161,163,153,159,160,157,149,152,204,203,218,219,220,221,140,139,137,146,124,141,45,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,142,110]},"version":"4.4.3"}
package/lib/index.d.ts ADDED
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+ export default function init(rootDir: string, siteName?: string, reqTemplate?: string, cliOptions?: Partial<{
8
+ useNpm: boolean;
9
+ skipInstall: boolean;
10
+ typescript: boolean;
11
+ }>): Promise<void>;
package/lib/index.js ADDED
@@ -0,0 +1,235 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) Facebook, Inc. and its affiliates.
4
+ *
5
+ * This source code is licensed under the MIT license found in the
6
+ * LICENSE file in the root directory of this source tree.
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ const tslib_1 = require("tslib");
10
+ const chalk_1 = (0, tslib_1.__importDefault)(require("chalk"));
11
+ const fs_extra_1 = (0, tslib_1.__importDefault)(require("fs-extra"));
12
+ const child_process_1 = require("child_process");
13
+ const prompts_1 = (0, tslib_1.__importDefault)(require("prompts"));
14
+ const path_1 = (0, tslib_1.__importDefault)(require("path"));
15
+ const shelljs_1 = (0, tslib_1.__importDefault)(require("shelljs"));
16
+ const lodash_1 = require("lodash");
17
+ const supports_color_1 = (0, tslib_1.__importDefault)(require("supports-color"));
18
+ const RecommendedTemplate = 'classic';
19
+ const TypeScriptTemplateSuffix = '-typescript';
20
+ function hasYarn() {
21
+ try {
22
+ (0, child_process_1.execSync)('yarnpkg --version', { stdio: 'ignore' });
23
+ return true;
24
+ }
25
+ catch (e) {
26
+ return false;
27
+ }
28
+ }
29
+ function isValidGitRepoUrl(gitRepoUrl) {
30
+ return ['https://', 'git@'].some((item) => gitRepoUrl.startsWith(item));
31
+ }
32
+ async function updatePkg(pkgPath, obj) {
33
+ const content = await fs_extra_1.default.readFile(pkgPath, 'utf-8');
34
+ const pkg = JSON.parse(content);
35
+ const newPkg = Object.assign(pkg, obj);
36
+ await fs_extra_1.default.outputFile(pkgPath, JSON.stringify(newPkg, null, 2));
37
+ }
38
+ function readTemplates(templatesDir) {
39
+ const templates = fs_extra_1.default
40
+ .readdirSync(templatesDir)
41
+ .filter((d) => !d.startsWith('.') &&
42
+ !d.startsWith('README') &&
43
+ !d.endsWith(TypeScriptTemplateSuffix) &&
44
+ d !== 'shared');
45
+ // Classic should be first in list!
46
+ return (0, lodash_1.sortBy)(templates, (t) => t !== RecommendedTemplate);
47
+ }
48
+ function createTemplateChoices(templates) {
49
+ function makeNameAndValueChoice(value) {
50
+ const title = value === RecommendedTemplate ? `${value} (recommended)` : value;
51
+ return { title, value };
52
+ }
53
+ return [
54
+ ...templates.map((template) => makeNameAndValueChoice(template)),
55
+ makeNameAndValueChoice('Git repository'),
56
+ ];
57
+ }
58
+ function getTypeScriptBaseTemplate(template) {
59
+ if (template.endsWith(TypeScriptTemplateSuffix)) {
60
+ return template.replace(TypeScriptTemplateSuffix, '');
61
+ }
62
+ return undefined;
63
+ }
64
+ async function copyTemplate(templatesDir, template, dest) {
65
+ await fs_extra_1.default.copy(path_1.default.resolve(templatesDir, 'shared'), dest);
66
+ // TypeScript variants will copy duplicate resources like CSS & config from base template
67
+ const tsBaseTemplate = getTypeScriptBaseTemplate(template);
68
+ if (tsBaseTemplate) {
69
+ const tsBaseTemplatePath = path_1.default.resolve(templatesDir, tsBaseTemplate);
70
+ await fs_extra_1.default.copy(tsBaseTemplatePath, dest, {
71
+ filter: (filePath) => fs_extra_1.default.statSync(filePath).isDirectory() ||
72
+ path_1.default.extname(filePath) === '.css' ||
73
+ path_1.default.basename(filePath) === 'docusaurus.config.js',
74
+ });
75
+ }
76
+ await fs_extra_1.default.copy(path_1.default.resolve(templatesDir, template), dest, {
77
+ // Symlinks don't exist in published NPM packages anymore, so this is only to prevent errors during local testing
78
+ filter: (filePath) => !fs_extra_1.default.lstatSync(filePath).isSymbolicLink(),
79
+ });
80
+ }
81
+ async function init(rootDir, siteName, reqTemplate, cliOptions = {}) {
82
+ const useYarn = cliOptions.useNpm ? false : hasYarn();
83
+ const templatesDir = path_1.default.resolve(__dirname, '../templates');
84
+ const templates = readTemplates(templatesDir);
85
+ const hasTS = (templateName) => fs_extra_1.default.pathExistsSync(path_1.default.resolve(templatesDir, `${templateName}${TypeScriptTemplateSuffix}`));
86
+ let name = siteName;
87
+ // Prompt if siteName is not passed from CLI.
88
+ if (!name) {
89
+ const prompt = await (0, prompts_1.default)({
90
+ type: 'text',
91
+ name: 'name',
92
+ message: 'What should we name this site?',
93
+ initial: 'website',
94
+ });
95
+ name = prompt.name;
96
+ }
97
+ if (!name) {
98
+ throw new Error(chalk_1.default.red('A website name is required.'));
99
+ }
100
+ const dest = path_1.default.resolve(rootDir, name);
101
+ if (fs_extra_1.default.existsSync(dest)) {
102
+ throw new Error(`Directory already exists at "${dest}"!`);
103
+ }
104
+ let template = reqTemplate;
105
+ let useTS = cliOptions.typescript;
106
+ // Prompt if template is not provided from CLI.
107
+ if (!template) {
108
+ const templatePrompt = await (0, prompts_1.default)({
109
+ type: 'select',
110
+ name: 'template',
111
+ message: 'Select a template below...',
112
+ choices: createTemplateChoices(templates),
113
+ });
114
+ template = templatePrompt.template;
115
+ if (template && !useTS && hasTS(template)) {
116
+ const tsPrompt = await (0, prompts_1.default)({
117
+ type: 'confirm',
118
+ name: 'useTS',
119
+ message: 'This template is available in TypeScript. Do you want to use the TS variant?',
120
+ initial: false,
121
+ });
122
+ useTS = tsPrompt.useTS;
123
+ }
124
+ }
125
+ // If user choose Git repository, we'll prompt for the url.
126
+ if (template === 'Git repository') {
127
+ const repoPrompt = await (0, prompts_1.default)({
128
+ type: 'text',
129
+ name: 'gitRepoUrl',
130
+ validate: (url) => {
131
+ if (url && isValidGitRepoUrl(url)) {
132
+ return true;
133
+ }
134
+ return chalk_1.default.red(`Invalid repository URL`);
135
+ },
136
+ message: 'Enter a repository URL from GitHub, Bitbucket, GitLab, or any other public repo.\n(e.g: https://github.com/ownerName/repoName.git)',
137
+ });
138
+ template = repoPrompt.gitRepoUrl;
139
+ }
140
+ console.log(`
141
+ ${chalk_1.default.cyan('Creating new Docusaurus project...')}
142
+ `);
143
+ if (template && isValidGitRepoUrl(template)) {
144
+ console.log(`Cloning Git template ${chalk_1.default.cyan(template)}...`);
145
+ if (shelljs_1.default.exec(`git clone --recursive ${template} ${dest}`, { silent: true })
146
+ .code !== 0) {
147
+ throw new Error(chalk_1.default.red(`Cloning Git template ${template} failed!`));
148
+ }
149
+ }
150
+ else if (template && templates.includes(template)) {
151
+ // Docusaurus templates.
152
+ if (useTS) {
153
+ if (!hasTS(template)) {
154
+ throw new Error(`Template ${template} doesn't provide the Typescript variant.`);
155
+ }
156
+ template = `${template}${TypeScriptTemplateSuffix}`;
157
+ }
158
+ try {
159
+ await copyTemplate(templatesDir, template, dest);
160
+ }
161
+ catch (err) {
162
+ console.log(`Copying Docusaurus template ${chalk_1.default.cyan(template)} failed!`);
163
+ throw err;
164
+ }
165
+ }
166
+ else {
167
+ throw new Error('Invalid template.');
168
+ }
169
+ // Update package.json info.
170
+ try {
171
+ await updatePkg(path_1.default.join(dest, 'package.json'), {
172
+ name: (0, lodash_1.kebabCase)(name),
173
+ version: '0.0.0',
174
+ private: true,
175
+ });
176
+ }
177
+ catch (err) {
178
+ console.log(chalk_1.default.red('Failed to update package.json.'));
179
+ throw err;
180
+ }
181
+ // We need to rename the gitignore file to .gitignore
182
+ if (!fs_extra_1.default.pathExistsSync(path_1.default.join(dest, '.gitignore')) &&
183
+ fs_extra_1.default.pathExistsSync(path_1.default.join(dest, 'gitignore'))) {
184
+ await fs_extra_1.default.move(path_1.default.join(dest, 'gitignore'), path_1.default.join(dest, '.gitignore'));
185
+ }
186
+ if (fs_extra_1.default.pathExistsSync(path_1.default.join(dest, 'gitignore'))) {
187
+ fs_extra_1.default.removeSync(path_1.default.join(dest, 'gitignore'));
188
+ }
189
+ const pkgManager = useYarn ? 'yarn' : 'npm';
190
+ if (!cliOptions.skipInstall) {
191
+ console.log(`Installing dependencies with ${chalk_1.default.cyan(pkgManager)}...`);
192
+ try {
193
+ // Use force coloring the output, since the command is invoked by shelljs, which is not the interactive shell
194
+ shelljs_1.default.exec(`cd "${name}" && ${useYarn ? 'yarn' : 'npm install --color always'}`, {
195
+ env: {
196
+ ...process.env,
197
+ ...(supports_color_1.default.stdout ? { FORCE_COLOR: '1' } : {}),
198
+ },
199
+ });
200
+ }
201
+ catch (err) {
202
+ console.log(chalk_1.default.red('Installation failed.'));
203
+ throw err;
204
+ }
205
+ }
206
+ console.log();
207
+ // Display the most elegant way to cd.
208
+ const cdpath = path_1.default.join(process.cwd(), name) === dest
209
+ ? name
210
+ : path_1.default.relative(process.cwd(), name);
211
+ console.log(`
212
+ Successfully created "${chalk_1.default.cyan(cdpath)}".
213
+ Inside that directory, you can run several commands:
214
+
215
+ ${chalk_1.default.cyan(`${pkgManager} start`)}
216
+ Starts the development server.
217
+
218
+ ${chalk_1.default.cyan(`${pkgManager} ${useYarn ? '' : 'run '}build`)}
219
+ Bundles your website into static files for production.
220
+
221
+ ${chalk_1.default.cyan(`${pkgManager} ${useYarn ? '' : 'run '}serve`)}
222
+ Serves the built website locally.
223
+
224
+ ${chalk_1.default.cyan(`${pkgManager} deploy`)}
225
+ Publishes the website to GitHub pages.
226
+
227
+ We recommend that you begin by typing:
228
+
229
+ ${chalk_1.default.cyan('cd')} ${cdpath}
230
+ ${chalk_1.default.cyan(`${pkgManager} start`)}
231
+
232
+ Happy building awesome websites!
233
+ `);
234
+ }
235
+ exports.default = init;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-docusaurus",
3
- "version": "0.0.1",
3
+ "version": "0.0.5",
4
4
  "description": "Create Docusaurus apps easily.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -10,6 +10,11 @@
10
10
  "bugs": {
11
11
  "url": "https://github.com/facebook/docusaurus/issues"
12
12
  },
13
+ "scripts": {
14
+ "create-docusaurus": "create-docusaurus",
15
+ "build": "tsc",
16
+ "watch": "tsc --watch"
17
+ },
13
18
  "bin": {
14
19
  "create-docusaurus": "bin/index.js"
15
20
  },
@@ -17,10 +22,21 @@
17
22
  "access": "public"
18
23
  },
19
24
  "license": "MIT",
25
+ "dependencies": {
26
+ "chalk": "^4.1.2",
27
+ "commander": "^5.1.0",
28
+ "fs-extra": "^10.0.0",
29
+ "lodash": "^4.17.20",
30
+ "prompts": "^2.4.1",
31
+ "semver": "^7.3.4",
32
+ "shelljs": "^0.8.4",
33
+ "supports-color": "^8.1.1",
34
+ "tslib": "^2.3.1"
35
+ },
20
36
  "engines": {
21
37
  "node": ">=12.13.0"
22
38
  },
23
- "dependencies": {
24
- "@docusaurus/init": "latest"
39
+ "devDependencies": {
40
+ "@types/supports-color": "^8.1.1"
25
41
  }
26
42
  }