├── .bitmap ├── .circleci ├── config.yml └── config.yml.bak ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 1-bug-report.md │ ├── 2-support-request.md │ ├── 3-feature_request.md │ └── 4-docs-issue.md ├── PULL_REQUEST_TEMPLATE.md └── instructions │ └── bit.instructions.md ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .snyk ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── babel-register.js ├── babel.config.js ├── bin └── bit.js ├── components ├── bit │ └── get-bit-version │ │ ├── get-bit-version.ts │ │ └── index.ts ├── component-issues │ ├── circular-dependencies.ts │ ├── component-issue.ts │ ├── deprecated-dependencies.ts │ ├── duplicate-component-and-package.ts │ ├── esm.mjs │ ├── external-env-without-version.ts │ ├── import-from-directory.ts │ ├── import-non-main-files.ts │ ├── index.ts │ ├── issues-list.ts │ ├── legacy-inside-harmony.ts │ ├── merge-config-has-conflict.ts │ ├── missing-dependencies-on-fs.ts │ ├── missing-dists.ts │ ├── missing-links-from-nm-to-src.ts │ ├── missing-manually-configured-packages.ts │ ├── missing-packages-dependencies-on-fs.ts │ ├── multiple-envs.ts │ ├── non-loaded-env.ts │ ├── parse-errors.ts │ ├── relative-components-authored.ts │ ├── relative-components.ts │ ├── removed-dependencies.ts │ ├── removed-env.ts │ ├── resolve-errors.ts │ ├── self-reference.ts │ └── untracked-dependencies.ts ├── config-store │ ├── config-cmd.ts │ ├── config-getter.ts │ ├── config-store.aspect.ts │ ├── config-store.main.runtime.ts │ ├── global-config.ts │ └── index.ts ├── crypto │ └── sha1 │ │ ├── index.ts │ │ └── sha1.ts ├── entities │ └── semantic-schema │ │ ├── api-schema.ts │ │ ├── export.ts │ │ ├── index.ts │ │ ├── schema-node-constructor.ts │ │ ├── schema-node.ts │ │ ├── schema-registry.ts │ │ ├── schemas │ │ ├── array-literal-expression.ts │ │ ├── class.ts │ │ ├── conditional-type.ts │ │ ├── constructor.ts │ │ ├── decorator.ts │ │ ├── docs │ │ │ ├── doc.ts │ │ │ ├── index.ts │ │ │ ├── property-like-tag.ts │ │ │ ├── return-tag.ts │ │ │ └── tag.ts │ │ ├── enum-member.ts │ │ ├── enum.ts │ │ ├── export.ts │ │ ├── expression-with-arguments.ts │ │ ├── function-like.ts │ │ ├── get-accessor.ts │ │ ├── ignored.ts │ │ ├── index-signature.ts │ │ ├── index.ts │ │ ├── indexed-access-type.ts │ │ ├── inference-type.ts │ │ ├── interface.ts │ │ ├── keyword-type.ts │ │ ├── literal-type.ts │ │ ├── literal-value.ts │ │ ├── module.ts │ │ ├── named-tuple.ts │ │ ├── object-literal-expression.ts │ │ ├── parameter.ts │ │ ├── parenthesized-type.ts │ │ ├── property-assignment.ts │ │ ├── set-accessor.ts │ │ ├── template-literal-type-span.ts │ │ ├── template-literal-type.ts │ │ ├── this-type.ts │ │ ├── tuple-type.ts │ │ ├── type-array.ts │ │ ├── type-intersection.ts │ │ ├── type-literal.ts │ │ ├── type-operator.ts │ │ ├── type-predicate.ts │ │ ├── type-query.ts │ │ ├── type-ref.ts │ │ ├── type-union.ts │ │ ├── type.ts │ │ ├── unimplemented-schema.ts │ │ ├── unknown-schema.ts │ │ ├── unresolved-schema.ts │ │ └── variable-like.ts │ │ ├── semantic-schema.docs.md │ │ ├── type.ts │ │ └── unknown-schema-factory.ts ├── hooks │ ├── use-lane-components │ │ ├── index.ts │ │ └── use-lane-components.tsx │ ├── use-lanes │ │ ├── index.ts │ │ ├── lanes-context.ts │ │ ├── lanes-provider.tsx │ │ └── use-lanes.tsx │ ├── use-navigation-message-listener │ │ ├── index.ts │ │ └── use-navigation-message-listener.ts │ ├── use-url-change-broadcaster │ │ ├── index.ts │ │ └── use-url-change-broadcaster.tsx │ └── use-viewed-lane-from-url_1 │ │ ├── index.ts │ │ └── use-viewed-lane-from-url.ts ├── legacy-component-log │ ├── index.ts │ └── legacy-component-log.ts ├── legacy │ ├── analytics │ │ ├── analytics-sender.ts │ │ ├── analytics.ts │ │ └── index.ts │ ├── bit-map │ │ ├── bit-map.spec.ts │ │ ├── bit-map.ts │ │ ├── component-map.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── duplicate-root-dir.ts │ │ │ ├── index.ts │ │ │ ├── invalid-bit-map.ts │ │ │ ├── missing-bit-map-component.ts │ │ │ ├── missing-main-file.ts │ │ │ └── outside-root-dir.ts │ │ └── index.ts │ ├── cli │ │ └── error │ │ │ ├── clone-error-object.ts │ │ │ ├── custom-error.ts │ │ │ ├── hash-error-object.ts │ │ │ ├── index.ts │ │ │ └── validation-error.ts │ ├── component-diff │ │ ├── components-diff.ts │ │ ├── components-object-diff.ts │ │ ├── diff-files.ts │ │ └── index.ts │ ├── component-list │ │ ├── components-list.spec.ts │ │ ├── components-list.ts │ │ └── index.ts │ ├── constants │ │ └── constants.ts │ ├── consumer-component │ │ ├── component-loader.ts │ │ ├── component-schema.ts │ │ ├── consumer-component.spec.ts │ │ ├── consumer-component.ts │ │ ├── dependencies │ │ │ ├── dependencies.spec.ts │ │ │ ├── dependencies.ts │ │ │ ├── dependency.ts │ │ │ └── index.ts │ │ ├── exceptions │ │ │ ├── component-not-found-in-path.ts │ │ │ ├── ignored-directory.ts │ │ │ └── main-file-removed.ts │ │ └── index.ts │ ├── consumer-config │ │ ├── abstract-config.ts │ │ ├── component-config.ts │ │ ├── component-overrides.ts │ │ ├── exceptions │ │ │ ├── index.ts │ │ │ ├── invalid-package-json.ts │ │ │ └── invalid-package-manager.ts │ │ ├── index.ts │ │ ├── legacy-workspace-config-interface.ts │ │ └── workspace-config.ts │ ├── consumer │ │ ├── consumer-loader.ts │ │ ├── consumer.spec.ts │ │ ├── consumer.ts │ │ ├── dir-structure │ │ │ └── dir-structure.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── component-out-of-sync.ts │ │ │ ├── components-pending-import.ts │ │ │ ├── components-pending-merge.ts │ │ │ ├── consumer-not-found.ts │ │ │ ├── index.ts │ │ │ ├── newer-version-found.ts │ │ │ └── unexpected-package-name.ts │ │ └── index.ts │ ├── dependency-graph │ │ ├── index.ts │ │ ├── scope-graph.ts │ │ └── vizgraph.ts │ ├── e2e-helper │ │ ├── e2e-bitmap-helper.ts │ │ ├── e2e-capsules-helper.ts │ │ ├── e2e-command-helper.ts │ │ ├── e2e-component-json-helper.ts │ │ ├── e2e-config-helper.ts │ │ ├── e2e-env-helper.ts │ │ ├── e2e-extensions-helper.ts │ │ ├── e2e-fixtures-helper.ts │ │ ├── e2e-fs-helper.ts │ │ ├── e2e-general-helper.ts │ │ ├── e2e-git-helper.ts │ │ ├── e2e-helper.ts │ │ ├── e2e-npm-helper.ts │ │ ├── e2e-package-json-helper.ts │ │ ├── e2e-scope-helper.ts │ │ ├── e2e-scope-json-helper.ts │ │ ├── e2e-scopes.ts │ │ ├── e2e-workspace-jsonc-helper.ts │ │ ├── excluded-fixtures │ │ │ ├── components │ │ │ │ └── custom-dev-files │ │ │ │ │ ├── comp.custom-composition-suffix.tsx │ │ │ │ │ ├── comp.custom-docs-suffix.mdx │ │ │ │ │ ├── custom-dev-files.js │ │ │ │ │ ├── custom-dev-files.registered-test.spec.js │ │ │ │ │ ├── custom-dev-files.spec.js │ │ │ │ │ ├── file.custom-dev-file.js │ │ │ │ │ └── index.js │ │ │ ├── extensions │ │ │ │ ├── babel-env │ │ │ │ │ ├── babel-env.extension.ts │ │ │ │ │ ├── babel.config.json │ │ │ │ │ └── index.ts │ │ │ │ ├── custom-jest-resolve-env │ │ │ │ │ ├── config │ │ │ │ │ │ ├── jest.config.js │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── custom-jest-resolve-env.bit-env.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── custom-react-env │ │ │ │ │ ├── custom-react-env.aspect.ts │ │ │ │ │ ├── custom-react-env.main.runtime.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── jest │ │ │ │ │ │ └── jest.config.js │ │ │ │ │ ├── typescript │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ └── webpack │ │ │ │ │ │ └── webpack-transformers.ts │ │ │ │ ├── dev-files-env │ │ │ │ │ ├── dev-files-env.extension.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── dummy-extension-without-logs │ │ │ │ │ ├── dummy-extension-without-logs.extension.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── dummy-extension │ │ │ │ │ ├── dummy-extension.extension.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── env-add-dependencies │ │ │ │ │ ├── add-deps-env.extension.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── env-with-scripts │ │ │ │ │ ├── env-with-scripts.bit-env.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── extension-add-config │ │ │ │ │ └── simple-config │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── simple-config.extension.ts │ │ │ │ ├── extension-add-dependencies │ │ │ │ │ ├── extension-add-dependencies.aspect.ts │ │ │ │ │ ├── extension-add-dependencies.main.runtime.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── extension-provider-error │ │ │ │ │ ├── extension-provider-error.aspect.ts │ │ │ │ │ ├── extension-provider-error.main.runtime.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── invalid-jest-config-env │ │ │ │ │ ├── config │ │ │ │ │ │ ├── jest.config.js │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── index.ts │ │ │ │ │ └── invalid-jest-config.bit-env.ts │ │ │ │ ├── mdx-based-env │ │ │ │ │ ├── index.ts │ │ │ │ │ └── my-mdx-env.bit-env.ts │ │ │ │ ├── mocha-only-test-env │ │ │ │ │ ├── config │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── index.ts │ │ │ │ │ └── mocha-only-test-env.bit-env.ts │ │ │ │ ├── multi-jest-testers-env │ │ │ │ │ ├── config │ │ │ │ │ │ ├── jest.config.js │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── index.ts │ │ │ │ │ └── multi-jest-tester-env.bit-env.ts │ │ │ │ ├── multiple-compilers-env │ │ │ │ │ ├── babel.config.json │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── multiple-compilers-env.extension.ts │ │ │ │ │ └── ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── node-based-env │ │ │ │ │ ├── index.ts │ │ │ │ │ └── my-node-env.bit-env.ts │ │ │ │ ├── node-env-1 │ │ │ │ │ ├── index.ts │ │ │ │ │ └── node-env.extension.ts │ │ │ │ ├── node-env-2 │ │ │ │ │ ├── index.ts │ │ │ │ │ └── node-env.extension.ts │ │ │ │ ├── node-env-dev-dep │ │ │ │ │ ├── index.ts │ │ │ │ │ └── node-env.extension.ts │ │ │ │ ├── node-env │ │ │ │ │ ├── index.ts │ │ │ │ │ └── node-env.extension.ts │ │ │ │ ├── non-requireable-aspect │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── non-requireable-aspect.aspect.ts │ │ │ │ │ └── non-requireable-aspect.main.runtime.ts │ │ │ │ └── react-based-env │ │ │ │ │ ├── index.ts │ │ │ │ │ └── my-react-env.bit-env.ts │ │ │ ├── png │ │ │ │ ├── png-fixture1.png │ │ │ │ ├── png-fixture2.png │ │ │ │ └── png-fixture3.png │ │ │ ├── scopes │ │ │ │ ├── global-remote.tgz │ │ │ │ ├── legacy-remote.tgz │ │ │ │ └── repository-hooks-fixture.js │ │ │ └── workspace-with-tsconfig-issue │ │ │ │ ├── .bitmap │ │ │ │ ├── .gitignore │ │ │ │ ├── my-scope │ │ │ │ ├── buttons │ │ │ │ │ └── js-button │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── js-button.composition.jsx │ │ │ │ │ │ └── js-button.jsx │ │ │ │ └── envs │ │ │ │ │ └── my-react-env │ │ │ │ │ ├── config │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── env.jsonc │ │ │ │ │ ├── index.ts │ │ │ │ │ └── my-react-env.bit-env.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── workspace.jsonc │ │ ├── fixtures.ts │ │ ├── index.ts │ │ └── npm-ci-registry.ts │ ├── extension-data │ │ ├── extension-data-list.ts │ │ ├── extension-data.spec.ts │ │ ├── extension-data.ts │ │ └── index.ts │ ├── loader │ │ ├── index.ts │ │ └── loader.ts │ ├── logger │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── pino-logger.ts │ │ ├── profiler.ts │ │ ├── rotate-log-daily.ts │ │ └── rotate-log-file.ts │ ├── scope-api │ │ ├── index.ts │ │ └── lib │ │ │ ├── action.ts │ │ │ ├── delete.ts │ │ │ ├── exceptions │ │ │ └── lane-not-found.ts │ │ │ ├── fetch.ts │ │ │ ├── latest-versions.ts │ │ │ ├── put.ts │ │ │ ├── resolver.ts │ │ │ ├── scope-config.ts │ │ │ └── scope-init.ts │ ├── scope │ │ ├── README.md │ │ ├── component-dependencies.ts │ │ ├── component-objects.ts │ │ ├── component-ops │ │ │ ├── model-components-merger.spec.ts │ │ │ ├── model-components-merger.ts │ │ │ ├── multiple-component-merger.ts │ │ │ ├── remove-model-components.ts │ │ │ └── scope-components-importer.ts │ │ ├── component-version.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── action-not-found.ts │ │ │ ├── bit-id-comp-id-err.ts │ │ │ ├── client-id-in-use.ts │ │ │ ├── component-needs-update.ts │ │ │ ├── component-not-found.ts │ │ │ ├── dependencies-not-found.ts │ │ │ ├── error-from-remote.ts │ │ │ ├── export-missing-versions.ts │ │ │ ├── hash-not-found.ts │ │ │ ├── head-not-found.ts │ │ │ ├── id-not-found-in-graph.ts │ │ │ ├── index.ts │ │ │ ├── invalid-index-json.ts │ │ │ ├── merge-conflict-on-remote.ts │ │ │ ├── merge-conflict.ts │ │ │ ├── missing-objects.ts │ │ │ ├── no-common-snap.ts │ │ │ ├── no-head-no-version.ts │ │ │ ├── outdated-index-json.ts │ │ │ ├── parent-not-found.ts │ │ │ ├── persist-failed.ts │ │ │ ├── scope-json-not-found.ts │ │ │ ├── scope-not-found.ts │ │ │ ├── server-is-busy.ts │ │ │ ├── unknown-object-type.ts │ │ │ ├── version-already-exists.ts │ │ │ ├── version-invalid.ts │ │ │ ├── version-not-found-on-fs.ts │ │ │ └── version-not-found.ts │ │ ├── garbage-collector.ts │ │ ├── graph │ │ │ └── scope-graph.ts │ │ ├── index.ts │ │ ├── lanes │ │ │ ├── lanes.ts │ │ │ ├── remote-lanes.ts │ │ │ └── unmerged-components.ts │ │ ├── object-registrar.ts │ │ ├── objects-fetcher │ │ │ ├── objects-fetcher.ts │ │ │ ├── objects-writable-stream.ts │ │ │ ├── write-components-queue.ts │ │ │ └── write-objects-queue.ts │ │ ├── removed-components.spec.ts │ │ ├── removed-components.ts │ │ ├── repositories │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ ├── sources.ts │ │ │ └── tmp.ts │ │ ├── repository.ts │ │ ├── scope-json.ts │ │ ├── scope-loader.ts │ │ ├── scope.ts │ │ ├── staged-snaps.ts │ │ ├── validate-type.ts │ │ ├── version-dependencies.ts │ │ └── version-validator.ts │ └── utils │ │ ├── bit │ │ ├── component-placeholders.spec.ts │ │ ├── component-placeholders.ts │ │ ├── is-bit-id-match-by-wildcards.ts │ │ └── parse-scope.ts │ │ ├── checksum │ │ ├── checksum.spec.ts │ │ ├── checksum.ts │ │ ├── fixtures │ │ │ ├── 1px.gif │ │ │ └── dshaw.txt │ │ ├── index.ts │ │ └── readme.md │ │ ├── fs-write-file.ts │ │ ├── immutable-unshift.ts │ │ ├── index.ts │ │ ├── is-bit-url.ts │ │ ├── is-dir-empty-sync.ts │ │ ├── is-dir.ts │ │ ├── is-relative-import.ts │ │ ├── is-valid-path.ts │ │ ├── number │ │ ├── is-number.ts │ │ └── is-numeric.ts │ │ ├── object-clean.ts │ │ ├── object-to-stringified-tuple-array.ts │ │ ├── os-resolve-home-path.ts │ │ ├── packages │ │ ├── index.ts │ │ ├── resolve-pkg-name-by-path.spec.ts │ │ ├── resolve-pkg-name-by-path.ts │ │ └── resolve-pkg-path.ts │ │ ├── prepend-bang.ts │ │ ├── resolveLatestVersion.spec.ts │ │ ├── resolveLatestVersion.ts │ │ ├── string │ │ ├── from-base64.ts │ │ ├── get-stringify-args.ts │ │ ├── has-wildcard.spec.ts │ │ ├── has-wildcard.ts │ │ ├── remove-chalk-characters.ts │ │ ├── replace-package-name.spec.ts │ │ ├── replace-package-name.ts │ │ ├── to-base64-array-buffer.ts │ │ └── to-base64.ts │ │ ├── zlib-deflate.ts │ │ └── zlib-inflate.ts ├── mcp │ └── mcp-config-writer │ │ ├── bit-git-rules-template.md │ │ ├── bit-rules-consumer-template.md │ │ ├── bit-rules-template.md │ │ ├── index.ts │ │ └── mcp-config-writer.ts ├── modules │ ├── component-package-name │ │ ├── component-id-to-package-name.ts │ │ ├── component-node-modules-path.ts │ │ ├── index.ts │ │ └── package-name-to-component-id.ts │ ├── find-scope-path │ │ ├── find-scope-path.ts │ │ └── index.ts │ └── harmony-root-generator │ │ ├── harmony-root-generator.docs.mdx │ │ ├── harmony-root-generator.ts │ │ └── index.ts ├── overview │ └── renderers │ │ └── grouped-schema-nodes-overview-summary │ │ ├── grouped-schema-nodes-overview-summary.module.scss │ │ ├── grouped-schema-nodes-overview-summary.tsx │ │ └── index.ts ├── renderers │ ├── default-node-renderers │ │ └── index.ts │ └── tuple-type │ │ ├── index.ts │ │ ├── tuple-type.renderer.module.scss │ │ └── tuple-type.renderer.tsx ├── scope │ └── remotes │ │ ├── exceptions │ │ ├── index.ts │ │ ├── invalid-remote.ts │ │ ├── primary-overloaded.ts │ │ ├── remote-not-found.ts │ │ └── scope-not-found-or-denied.ts │ │ ├── get-remote-by-name.ts │ │ ├── global-remotes.ts │ │ ├── index.ts │ │ ├── remote-resolver │ │ └── remote-resolver.ts │ │ ├── remote.ts │ │ ├── remotes.ts │ │ └── scope-remotes.ts ├── semantics │ └── doc-parser │ │ ├── example-tag-parser.ts │ │ ├── extract-data-regex.ts │ │ ├── fixtures │ │ └── jsdoc │ │ │ ├── descriptionTag.js │ │ │ ├── endWithTwoStars.js │ │ │ ├── functionDeclaration.js │ │ │ ├── methodDeclaration.js │ │ │ ├── misc.js │ │ │ ├── properties.js │ │ │ ├── react │ │ │ ├── elevation.tsxx │ │ │ └── react-docs.js │ │ │ ├── variableDeclaration.js │ │ │ └── variousParamTypes.js │ │ ├── formater.ts │ │ ├── index.ts │ │ ├── jsdoc │ │ ├── index.ts │ │ ├── jsdoc-parser.spec.ts │ │ └── jsdoc-parser.ts │ │ ├── parser.ts │ │ ├── react │ │ ├── index.ts │ │ ├── react-parser.spec.ts │ │ └── react-parser.ts │ │ └── types.ts └── ui │ ├── artifacts │ ├── artifacts-tree │ │ ├── artifact-file-node-clicked.ts │ │ ├── artifacts-tree.module.scss │ │ ├── artifacts-tree.tsx │ │ └── index.ts │ ├── models │ │ └── component-artifacts-model │ │ │ ├── component-artifacts.model.ts │ │ │ └── index.ts │ └── queries │ │ └── use-component-artifacts │ │ ├── index.ts │ │ └── use-component-artifacts.ts │ ├── avatar │ ├── avatar.compositions.tsx │ ├── avatar.docs.mdx │ ├── avatar.tsx │ ├── default-avatar.tsx │ ├── index.ts │ ├── org-avatar.tsx │ ├── styles.module.scss │ └── user-avatar.tsx │ ├── buttons │ └── collapser │ │ ├── collapser-button.composition.tsx │ │ ├── collapser-button.docs.mdx │ │ ├── collapser-button.module.scss │ │ ├── collapser-button.tsx │ │ └── index.ts │ ├── code-compare │ ├── code-compare-editor-settings │ │ ├── code-compare-editor-settings.module.scss │ │ ├── code-compare-editor-settings.tsx │ │ └── index.ts │ ├── code-compare-editor │ │ ├── code-compare-editor.provider.tsx │ │ ├── code-compare-editor.tsx │ │ └── index.ts │ ├── code-compare-navigation │ │ ├── code-compare-navigation.module.scss │ │ ├── code-compare-navigation.tsx │ │ └── index.ts │ ├── code-compare-tree │ │ ├── code-compare-tree.module.scss │ │ ├── code-compare-tree.tsx │ │ └── index.ts │ ├── code-compare-view │ │ ├── code-compare-view.module.scss │ │ ├── code-compare-view.tsx │ │ └── index.ts │ ├── code-compare.module.scss │ ├── code-compare.tsx │ ├── code-compare.widgets.tsx │ ├── index.ts │ └── use-code-compare │ │ ├── index.ts │ │ └── use-code-compare.ts │ ├── code-editor │ ├── code-editor.provider.tsx │ ├── code-editor.tsx │ └── index.ts │ ├── code-tab-page │ ├── code-tab-page.module.scss │ ├── code-tab-page.tsx │ └── index.ts │ ├── code-view │ ├── code-view.module.scss │ ├── code-view.tsx │ └── index.ts │ ├── component-compare │ ├── changelog │ │ ├── component-compare-changelog.module.scss │ │ ├── component-compare-changelog.tsx │ │ └── index.ts │ ├── component-compare │ │ ├── component-compare.module.scss │ │ ├── component-compare.tsx │ │ └── index.ts │ ├── context │ │ ├── component-compare-context.ts │ │ └── index.ts │ ├── models │ │ └── component-compare-props │ │ │ ├── component-compare-props.ts │ │ │ └── index.ts │ ├── utils │ │ └── lazy-loading │ │ │ ├── index.ts │ │ │ └── lazy-loading.ts │ └── version-picker │ │ ├── component-compare-version-picker.module.scss │ │ ├── component-compare-version-picker.tsx │ │ └── index.ts │ ├── component-drawer │ ├── component-drawer-filter-widget.context.tsx │ ├── component-drawer-tree-widget.context.tsx │ ├── component-drawer.module.scss │ ├── component-drawer.tsx │ └── index.ts │ ├── component-filters │ ├── component-filter-context │ │ ├── component-filter-context.tsx │ │ └── index.ts │ ├── deprecate-filter │ │ ├── deprecate-filter.module.scss │ │ ├── deprecate-filter.tsx │ │ └── index.ts │ ├── env-filter │ │ ├── dropdown-item.tsx │ │ ├── envs-filter.module.scss │ │ ├── envs-filter.tsx │ │ ├── index.ts │ │ └── types.ts │ └── show-main-filter │ │ ├── index.ts │ │ ├── show-main-filter.module.scss │ │ └── show-main-filter.tsx │ ├── hooks │ ├── scope-context │ │ ├── index.ts │ │ ├── scope-context.ts │ │ └── scope-provider.tsx │ └── use-core-aspects │ │ ├── index.ts │ │ └── use-core-aspects.tsx │ ├── inputs │ └── lane-selector_1 │ │ ├── index.ts │ │ ├── lane-grouped-menu-item.module.scss │ │ ├── lane-grouped-menu-item.tsx │ │ ├── lane-menu-item.module.scss │ │ ├── lane-menu-item.tsx │ │ ├── lane-placeholder.module.scss │ │ ├── lane-placeholder.tsx │ │ ├── lane-selector-list.module.scss │ │ ├── lane-selector-list.tsx │ │ ├── lane-selector.module.scss │ │ └── lane-selector.tsx │ ├── lane-overview │ ├── empty-lane-overview.module.scss │ ├── empty-lane-overview.tsx │ ├── index.ts │ ├── lane-overview.module.scss │ └── lane-overview.tsx │ ├── menus │ └── use-lanes-menu │ │ ├── index.ts │ │ ├── use-lanes-menu.module.scss │ │ └── use-lanes-menu.tsx │ ├── models │ └── lanes-model │ │ ├── index.ts │ │ └── lanes-model.ts │ ├── pages │ ├── preview-not-found │ │ ├── image-icon.tsx │ │ ├── index.ts │ │ └── preview-not-found.tsx │ └── static-error │ │ ├── index.ts │ │ ├── render-page.tsx │ │ └── static-error-pages.tsx │ ├── preserve-workspace-mode │ ├── index.ts │ └── preserve-workspace-mode.tsx │ ├── react-router │ └── slot-router │ │ ├── index.ts │ │ └── slot-router.tsx │ ├── rendering │ └── html │ │ ├── dev-tools.tsx │ │ ├── full-height-style.tsx │ │ ├── html.tsx │ │ ├── index.ts │ │ ├── mount-point.tsx │ │ ├── ssr-styles.tsx │ │ └── stored-assets.tsx │ ├── side-bar │ ├── component-tree │ │ ├── component-tree.module.scss │ │ ├── component-tree.tsx │ │ ├── component-view │ │ │ ├── component-view.module.scss │ │ │ ├── component-view.tsx │ │ │ └── index.ts │ │ ├── default-tree-node-renderer │ │ │ ├── default-tree-node-renderer.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── namespace-tree-node │ │ │ ├── index.ts │ │ │ ├── namespace-tree-node.module.scss │ │ │ └── namespace-tree-node.tsx │ │ ├── payload-type.tsx │ │ ├── scope-tree-node │ │ │ ├── index.ts │ │ │ ├── scope-tree-node.module.scss │ │ │ └── scope-tree-node.tsx │ │ └── utils │ │ │ └── get-name.tsx │ └── index.ts │ ├── test-compare │ ├── compare-tests-page.tsx │ ├── compare-tests.module.scss │ ├── compare-tests.tsx │ └── index.ts │ ├── test-page │ ├── index.ts │ ├── tests-page.module.scss │ └── tests-page.tsx │ ├── time-ago │ ├── index.ts │ ├── time-ago.composition.tsx │ ├── time-ago.docs.tsx │ ├── time-ago.module.scss │ ├── time-ago.spec.tsx │ └── time-ago.tsx │ ├── tooltip │ ├── index.ts │ ├── mount-point.tsx │ ├── shared-instance.tsx │ ├── singleton-instance.tsx │ ├── tippy.module.scss │ ├── tooltip.compositions.tsx │ └── tooltip.tsx │ ├── use-workspace-mode │ ├── index.ts │ └── use-workspace-mode.ts │ ├── version-block │ ├── change-log.data.ts │ ├── index.ts │ ├── version-block.module.scss │ └── version-block.tsx │ ├── version-dropdown │ ├── index.ts │ ├── lane-info │ │ ├── index.ts │ │ ├── lane-info.module.scss │ │ └── lane-info.tsx │ ├── version-dropdown-placeholder.module.scss │ ├── version-dropdown-placeholder.tsx │ ├── version-dropdown.composition.tsx │ ├── version-dropdown.docs.tsx │ ├── version-dropdown.module.scss │ ├── version-dropdown.spec.tsx │ ├── version-dropdown.tsx │ └── version-info │ │ ├── index.ts │ │ ├── version-info.module.scss │ │ └── version-info.tsx │ ├── version-dropdown_1 │ ├── index.ts │ ├── lane-info │ │ ├── index.ts │ │ ├── lane-info.module.scss │ │ └── lane-info.tsx │ ├── version-dropdown-placeholder.module.scss │ ├── version-dropdown-placeholder.tsx │ ├── version-dropdown.composition.tsx │ ├── version-dropdown.docs.tsx │ ├── version-dropdown.module.scss │ ├── version-dropdown.spec.tsx │ ├── version-dropdown.tsx │ └── version-info │ │ ├── index.ts │ │ ├── version-info.module.scss │ │ └── version-info.tsx │ └── workspace-component-card │ ├── index.ts │ ├── workspace-component-card.docs.md │ ├── workspace-component-card.module.scss │ └── workspace-component-card.tsx ├── docs └── node-modules-optimization.md ├── e2e-skipped ├── app.e2e.ts ├── clear-cache.e2e.ts ├── install-angular.e2e.ts ├── install-missing-peer-dependencies.e2e.ts ├── mix-harmony-legacy.e2e.ts └── permissions-errors.e2e.3.ts ├── e2e ├── .eslintrc.js ├── commands │ ├── add.e2e.1.ts │ ├── config.e2e.1.ts │ ├── diff.e2e.1.ts │ ├── export.e2e.1.ts │ ├── import-all.e2e.1.ts │ ├── import.e2e.1.ts │ ├── init.e2e.1.ts │ ├── list.e2e.1.ts │ ├── move.e2e.1.ts │ ├── pattern.e2e.ts │ ├── remote.e2e.1.ts │ ├── remove.e2e.1.ts │ ├── reset.e2e.ts │ ├── status.e2e.2.ts │ ├── tag.e2e.1.ts │ └── watch.e2e.2.ts ├── doctor │ ├── doctor-git-exec.e2e.3.ts │ └── doctor-infra.e2e.3.ts ├── fixtures │ ├── big-text-file-fixture.txt │ ├── compilers │ │ ├── add-scope-name │ │ │ └── compiler.js │ │ ├── babel │ │ │ └── compiler.js │ │ ├── bundle │ │ │ └── compiler.js │ │ ├── capsule │ │ │ └── compiler.js │ │ ├── dist-main │ │ │ └── compiler.js │ │ ├── new-babel │ │ │ ├── .babelrc │ │ │ └── compiler.js │ │ ├── pkg-json │ │ │ └── compiler.js │ │ ├── webpack-relative │ │ │ ├── base │ │ │ │ └── base.config.js │ │ │ ├── compiler.js │ │ │ └── dev.config.js │ │ └── webpack │ │ │ ├── base.config.js │ │ │ ├── compiler.js │ │ │ └── dev.config.js │ ├── components │ │ ├── add-many │ │ │ ├── add_many_test_files │ │ │ │ ├── LICENSE │ │ │ │ ├── a.js │ │ │ │ ├── a.spec.js │ │ │ │ ├── b.js │ │ │ │ ├── c.js │ │ │ │ ├── d.js │ │ │ │ ├── d.spec.js │ │ │ │ ├── e.js │ │ │ │ ├── f.js │ │ │ │ └── inner_folder │ │ │ │ │ └── .gitkeep │ │ │ ├── g.js │ │ │ ├── h.js │ │ │ ├── h.spec.js │ │ │ ├── i.js │ │ │ └── i.spec.js │ │ ├── app │ │ │ ├── app.tsx │ │ │ └── index.ts │ │ ├── dependency-status │ │ │ └── dependency-status-test-files │ │ │ │ ├── a.js │ │ │ │ ├── b.js │ │ │ │ └── c.js │ │ ├── help │ │ │ ├── help.tsx │ │ │ └── index.ts │ │ ├── hero-button │ │ │ ├── HeroButton.js │ │ │ ├── HeroButton.spec.js │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── hero-withrelativepaths │ │ │ ├── Hero.js │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── hero │ │ │ ├── Hero.js │ │ │ ├── Hero.spec.js │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── import-relative-path │ │ │ └── import-by-2-files │ │ │ │ ├── a1.js │ │ │ │ ├── a2.js │ │ │ │ ├── a3.js │ │ │ │ └── b.js │ │ ├── is-string │ │ │ ├── index.js │ │ │ ├── is-string.js │ │ │ └── is-string.spec.js │ │ ├── logo │ │ │ ├── index.ts │ │ │ ├── logo.e2e.spec.tsx │ │ │ ├── logo.simulation.ts │ │ │ ├── logo.spec.tsx │ │ │ └── logo.tsx │ │ ├── pad-left │ │ │ ├── index.js │ │ │ ├── pad-left.js │ │ │ └── pad-left.spec.js │ │ └── styles │ │ │ └── global.css │ ├── objects │ │ ├── mjtjb8oh-remote2-bar2.tgz │ │ └── ovio1b1s-remote-bar1.tgz │ └── png_fixture.png ├── flows │ ├── big-file.e2e.2.ts │ ├── bitmap-deleted.e2e-2.ts │ ├── cyclic-dependencies.e2e.2.ts │ ├── delete-files.e2e.2.ts │ ├── id-with-wildcard.e2e.2.ts │ ├── import-package-json.e2e.3.ts │ ├── out-of-sync-componets.e2e.3.ts │ ├── remote-commands-outside-workspace.e2e.2.ts │ ├── same-name-different-scopes.e2e.ts │ └── sort-components-output.e2e.3.ts ├── functionalities │ ├── auto-tagging.e2e.2.ts │ ├── binary-files.e2e.2.ts │ ├── components-index.e2e.2.ts │ ├── dev-dependencies.e2e.2.ts │ ├── dynamic-namespaces.e2e.3.ts │ ├── merge.e2e.3.ts │ ├── peer-dependencies.e2e.3.ts │ ├── peer-dependency-component.e2e.ts │ ├── repository-hooks-aspects.e2e.ts │ └── workspace-config.e2e.3.ts ├── harmony │ ├── add-harmony.e2e.ts │ ├── add-missing-deps-custom-detector.e2e.ts │ ├── artifacts.e2e.ts │ ├── aspect.e2e.ts │ ├── babel.e2e.ts │ ├── binary-files.e2e.ts │ ├── bit-ignore.e2e.ts │ ├── build-cmd.e2e.ts │ ├── checkout-harmony.e2e.ts │ ├── ci-commands.e2e.ts │ ├── compile.e2e.4.ts │ ├── component-config.e2e.ts │ ├── corrupted-objects.e2e.ts │ ├── create.e2e.4.ts │ ├── custom-aspects.e2e.ts │ ├── custom-env.e2e.ts │ ├── deduplication.e2e.ts │ ├── delete.e2e.ts │ ├── dependencies-cmd.e2e.ts │ ├── dependencies.e2e.ts │ ├── dependencies │ │ ├── allow-scripts.e2e.ts │ │ ├── env-jsonc-policies.e2e.ts │ │ ├── hoisting.e2e.ts │ │ ├── never-built-dependencies.e2e.ts │ │ ├── optional-dependencies.e2e.ts │ │ └── policies-order.e2e.ts │ ├── dependency-resolver.e2e.ts │ ├── deprecate.e2e.1.ts │ ├── deps-graph.e2e.ts │ ├── deps-in-capsules.e2e.ts │ ├── deps-write.e2e.ts │ ├── dev-files.e2e.ts │ ├── eject-harmony.e2e.ts │ ├── env.e2e.ts │ ├── export-harmony.e2e.ts │ ├── extensions-config-diff.e2e.ts │ ├── extensions-config.e2e.3.ts │ ├── fork.e2e.ts │ ├── graph-harmony.e2e.ts │ ├── harmony-workspace.e2e.ts │ ├── http.e2e.ts │ ├── import-harmony.e2e.ts │ ├── import-non-main-files.e2e.ts │ ├── imported-component-deps.e2e.ts │ ├── init-harmony.e2e.ts │ ├── install-and-compile.e2e.ts │ ├── install-missing-dependencies.e2e.ts │ ├── install.e2e.ts │ ├── installing-component-dependency.e2e.ts │ ├── jest-fixtures.ts │ ├── jest.e2e.ts │ ├── lanes │ │ ├── abort-merge-lane.e2e.ts │ │ ├── bit-checkout-on-lanes.e2e.ts │ │ ├── bit-import-on-lanes.e2e.ts │ │ ├── bit-remove-on-lanes.e2e.ts │ │ ├── bit-reset-on-lanes.e2e.ts │ │ ├── diverged-from-forked.e2e.ts │ │ ├── diverged-from-remote-lane.e2e.ts │ │ ├── import-lanes.e2e.ts │ │ ├── lane-basic-operations.e2e.ts │ │ ├── lane-diff.e2e.ts │ │ ├── lane-eject.e2e.ts │ │ ├── lane-export.e2e.ts │ │ ├── lane-forking.e2e.ts │ │ ├── lane-from-lane.e2e.ts │ │ ├── lane-history-with-deleted-components.e2e.ts │ │ ├── lane-import-git-branch.e2e.ts │ │ ├── lane-import.e2e.ts │ │ ├── lane-management.e2e.ts │ │ ├── lane-merge.e2e.ts │ │ ├── lane-multiple-scopes.e2e.ts │ │ ├── lane-snapping.e2e.ts │ │ ├── lanes-with-issues.e2e.ts │ │ ├── merge-lanes-diverge.e2e.ts │ │ ├── merge-lanes-edge-cases.e2e.ts │ │ ├── merge-lanes-main.e2e.ts │ │ ├── merge-lanes-partial.e2e.ts │ │ ├── merge-lanes-remote.e2e.ts │ │ ├── merge-lanes-squash.e2e.ts │ │ ├── merge-lanes-unrelated.e2e.ts │ │ ├── multiple-comps-same-name-on-lane.e2e.ts │ │ ├── remove-lanes.e2e.ts │ │ ├── rename-lane.e2e.ts │ │ ├── switch-lanes.e2e.ts │ │ └── unrelated-and-removed.e2e.ts │ ├── link.e2e.ts │ ├── load-bit.e2e.ts │ ├── load-extensions.e2e.4.ts │ ├── log.e2e.ts │ ├── merge-config.e2e.ts │ ├── mocha-tester.e2e.ts │ ├── multiple-compilers.e2e.ts │ ├── multiple-envs.e2e.ts │ ├── multiple-testers.e2e.ts │ ├── new.e2e.ts │ ├── no-files.e2e.ts │ ├── node-linker.e2e.ts │ ├── out-of-sync-components-harmony.e2e.ts │ ├── pkg-manager-config.e2e.ts │ ├── pkg-manager-errors.e2e.ts │ ├── pkg.e2e.ts │ ├── pnpm-default-hoisting.e2e.ts │ ├── preview.e2e.ts │ ├── publish.e2e.4.ts │ ├── readme-env.e2e.ts │ ├── recover.e2e.ts │ ├── recovery-after-deletion.e2e.ts │ ├── refactor.e2e.ts │ ├── relative-paths.e2e.3.ts │ ├── rename.e2e.ts │ ├── require-resolve.e2e.ts │ ├── revert.e2e.ts │ ├── root-components.e2e.ts │ ├── scope-cmd.e2e.ts │ ├── scripts.e2e.ts │ ├── set-default-owner-and-scope.e2e.4.ts │ ├── show-harmony.e2e.ts │ ├── snap.e2e.2.ts │ ├── stash.e2e.ts │ ├── status-harmony.e2e.ts │ ├── tag-harmony.e2e.ts │ ├── test-harmony.e2e.ts │ ├── track-directories-harmony.e2e.ts │ ├── typescript-tsserver.e2e.ts │ ├── uninstall-cmd.e2e.ts │ ├── untag-harmony.e2e.ts │ ├── update-cmd.e2e.ts │ ├── updates-from-main-and-lane.e2e.ts │ ├── use.e2e.ts │ ├── validate.e2e.ts │ └── workspace-config.e2e.ts ├── http-helper.ts ├── performance │ ├── files-snapshot.txt │ ├── filesystem-read.e2e.ts │ └── many-components.performance.spec.ts ├── typescript │ └── typescript.e2e.3.ts └── watch-runner.ts ├── fixtures ├── component-model.json ├── consumer-components │ ├── es6 │ │ ├── bar-foo.json │ │ ├── utils-is-string.json │ │ └── utils-is-type.json │ ├── plain-javascript │ │ ├── bar-foo.json │ │ ├── utils-is-string.json │ │ └── utils-is-type.json │ ├── sass │ │ ├── bar-foo.json │ │ ├── utils-is-string.json │ │ └── utils-is-type.json │ └── with-compiler │ │ └── with-compiler.json ├── invalid-tester.js └── path-map.json ├── mocha-multi-reporters-config.json ├── package.json ├── pnpm-lock.yaml ├── publish-legacy.md ├── scopes ├── api-reference │ └── api-reference │ │ ├── api-reference.aspect.ts │ │ ├── api-reference.ui.runtime.tsx │ │ ├── esm.mjs │ │ └── index.ts ├── cloud │ ├── cloud │ │ ├── cloud.aspect.ts │ │ ├── cloud.graphql.ts │ │ ├── cloud.main.runtime.ts │ │ ├── cloud.ui.runtime.tsx │ │ ├── cloud.ui.styles.scss │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── login.cmd.ts │ │ ├── logout.cmd.ts │ │ ├── npmrc.cmd.ts │ │ └── whoami.cmd.ts │ ├── hooks │ │ ├── use-cloud-scopes │ │ │ ├── index.ts │ │ │ └── use-cloud-scopes.ts │ │ ├── use-current-user │ │ │ ├── index.ts │ │ │ └── use-current-user.ts │ │ └── use-logout │ │ │ ├── index.ts │ │ │ └── use-logout.ts │ ├── models │ │ ├── cloud-scope │ │ │ ├── cloud-scope.model.ts │ │ │ └── index.ts │ │ └── cloud-user │ │ │ ├── cloud-user.model.ts │ │ │ └── index.ts │ ├── modules │ │ └── get-cloud-user │ │ │ ├── get-cloud-user.ts │ │ │ └── index.ts │ └── ui │ │ ├── current-user │ │ ├── current-user.module.scss │ │ ├── current-user.tsx │ │ └── index.ts │ │ ├── login │ │ ├── index.ts │ │ ├── login.module.scss │ │ └── login.tsx │ │ └── user-bar │ │ ├── index.ts │ │ ├── item.ts │ │ ├── section.ts │ │ ├── user-bar.module.scss │ │ └── user-bar.tsx ├── community │ └── community │ │ ├── community.aspect.ts │ │ ├── community.main.runtime.ts │ │ ├── esm.mjs │ │ └── index.ts ├── compilation │ ├── aspect-docs │ │ ├── babel │ │ │ ├── babel.composition.tsx │ │ │ ├── babel.docs.mdx │ │ │ ├── babel.mdx │ │ │ └── index.ts │ │ ├── compiler │ │ │ ├── compiler.composition.tsx │ │ │ ├── compiler.docs.mdx │ │ │ ├── compiler.mdx │ │ │ └── index.ts │ │ └── multi-compiler │ │ │ ├── index.ts │ │ │ ├── multi-compiler.composition.tsx │ │ │ ├── multi-compiler.docs.mdx │ │ │ └── multi-compiler.mdx │ ├── babel │ │ ├── babel.aspect.ts │ │ ├── babel.composition.tsx │ │ ├── babel.docs.mdx │ │ ├── babel.main.runtime.ts │ │ ├── compiler-options.ts │ │ ├── esm.mjs │ │ └── index.ts │ ├── bundler │ │ ├── browser-runtime.ts │ │ ├── bundle.ts │ │ ├── bundler-context.ts │ │ ├── bundler.aspect.ts │ │ ├── bundler.composition.tsx │ │ ├── bundler.docs.mdx │ │ ├── bundler.main.runtime.ts │ │ ├── bundler.service.tsx │ │ ├── bundler.ts │ │ ├── component-server.ts │ │ ├── dedup-envs.ts │ │ ├── dev-server-context.ts │ │ ├── dev-server.graphql.ts │ │ ├── dev-server.service.ts │ │ ├── dev-server.ts │ │ ├── esm.mjs │ │ ├── events │ │ │ ├── components-server-started-event.ts │ │ │ └── index.ts │ │ ├── exceptions │ │ │ ├── bind-error.ts │ │ │ └── index.ts │ │ ├── get-entry.ts │ │ ├── index.ts │ │ └── select-port.ts │ ├── compiler │ │ ├── compiler-env-type.ts │ │ ├── compiler.aspect.ts │ │ ├── compiler.cmd.ts │ │ ├── compiler.composition.tsx │ │ ├── compiler.docs.mdx │ │ ├── compiler.main.runtime.ts │ │ ├── compiler.service.ts │ │ ├── compiler.task.ts │ │ ├── dist-artifact.ts │ │ ├── esm.mjs │ │ ├── events │ │ │ ├── compiler-error.ts │ │ │ └── index.ts │ │ ├── exceptions │ │ │ ├── dist-artifact-not-found.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── output-formatter.ts │ │ ├── templates │ │ │ └── compiler │ │ │ │ ├── files │ │ │ │ ├── aspect-file.ts │ │ │ │ ├── compiler-file.ts │ │ │ │ ├── index-file.ts │ │ │ │ └── main-runtime-file.ts │ │ │ │ └── index.ts │ │ ├── types.ts │ │ └── workspace-compiler.ts │ ├── modules │ │ └── babel-compiler │ │ │ ├── babel-compiler.docs.md │ │ │ ├── babel-compiler.ts │ │ │ └── index.ts │ └── multi-compiler │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── multi-compiler.aspect.ts │ │ ├── multi-compiler.compiler.ts │ │ ├── multi-compiler.composition.tsx │ │ ├── multi-compiler.docs.mdx │ │ └── multi-compiler.main.runtime.ts ├── component │ ├── aspect-docs │ │ └── component │ │ │ ├── component.composition.tsx │ │ │ ├── component.docs.mdx │ │ │ ├── component.mdx │ │ │ └── index.ts │ ├── changelog │ │ ├── changelog.aspect.ts │ │ ├── changelog.composition.tsx │ │ ├── changelog.docs.mdx │ │ ├── changelog.section.tsx │ │ ├── changelog.ui.runtime.tsx │ │ ├── esm.mjs │ │ ├── index.ts │ │ └── ui │ │ │ ├── change-log-page.module.scss │ │ │ └── change-log-page.tsx │ ├── checkout │ │ ├── checkout-cmd.ts │ │ ├── checkout-version.ts │ │ ├── checkout.aspect.ts │ │ ├── checkout.main.runtime.ts │ │ ├── checkout.spec.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ └── revert-cmd.ts │ ├── code │ │ ├── code.aspect.ts │ │ ├── code.composition.tsx │ │ ├── code.docs.mdx │ │ ├── code.section.tsx │ │ ├── code.ui.runtime.tsx │ │ ├── esm.mjs │ │ └── index.ts │ ├── component-compare │ │ ├── component-compare-aspects.section.tsx │ │ ├── component-compare-changelog.section.tsx │ │ ├── component-compare-widget.module.scss │ │ ├── component-compare.aspect.ts │ │ ├── component-compare.compositions.tsx │ │ ├── component-compare.docs.mdx │ │ ├── component-compare.graphql.ts │ │ ├── component-compare.main.runtime.ts │ │ ├── component-compare.section.tsx │ │ ├── component-compare.ui.runtime.tsx │ │ ├── diff-cmd.ts │ │ ├── esm.mjs │ │ └── index.ts │ ├── component-descriptor │ │ ├── aspect-list.ts │ │ ├── component-descriptor.docs.mdx │ │ ├── component-descriptor.mocks.ts │ │ ├── component-descriptor.spec.ts │ │ ├── component-descriptor.ts │ │ └── index.ts │ ├── component-log │ │ ├── blame-cmd.ts │ │ ├── component-log.aspect.ts │ │ ├── component-log.composition.tsx │ │ ├── component-log.docs.mdx │ │ ├── component-log.main.runtime.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── log-cmd.ts │ │ ├── log-file-cmd.ts │ │ └── snap-graph.ts │ ├── component-package-version │ │ ├── component-package-version.ts │ │ └── index.ts │ ├── component-sizer │ │ ├── component-sizer.aspect.ts │ │ ├── component-sizer.composition.tsx │ │ ├── component-sizer.docs.mdx │ │ ├── component-sizer.graphql.ts │ │ ├── component-sizer.main.runtime.ts │ │ ├── component-sizer.module.scss │ │ ├── component-sizer.ui.runtime.tsx │ │ ├── esm.mjs │ │ └── index.ts │ ├── component-tree │ │ ├── component-tree-node.ts │ │ ├── component-tree.aspect.ts │ │ ├── component-tree.composition.tsx │ │ ├── component-tree.docs.mdx │ │ ├── component-tree.ui.runtime.tsx │ │ ├── esm.mjs │ │ └── index.ts │ ├── component-url │ │ ├── component-url.context.ts │ │ ├── component-url.spec.ts │ │ ├── component-url.ts │ │ ├── constants.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── scope-url.spec.ts │ │ └── scope-url.ts │ ├── component-writer │ │ ├── component-writer.aspect.ts │ │ ├── component-writer.main.runtime.ts │ │ ├── component-writer.ts │ │ ├── esm.mjs │ │ └── index.ts │ ├── component │ │ ├── aspect-entry.ts │ │ ├── aspect-list.ts │ │ ├── aspect.section.tsx │ │ ├── component-factory.ts │ │ ├── component-fs.ts │ │ ├── component-interface.ts │ │ ├── component-map │ │ │ ├── component-map.ts │ │ │ └── index.ts │ │ ├── component-meta.ts │ │ ├── component.aspect.ts │ │ ├── component.composition.tsx │ │ ├── component.docs.mdx │ │ ├── component.graphql.ts │ │ ├── component.main.runtime.ts │ │ ├── component.route.ts │ │ ├── component.ts │ │ ├── component.ui.runtime.tsx │ │ ├── config.ts │ │ ├── dependencies │ │ │ ├── dependencies.ts │ │ │ └── index.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── could-not-find-latest.ts │ │ │ ├── host-not-found.ts │ │ │ ├── index.ts │ │ │ ├── main-file-not-found.ts │ │ │ └── nothing-to-snap.ts │ │ ├── get-component-opts.ts │ │ ├── hash.ts │ │ ├── history-graph.ts │ │ ├── host │ │ │ ├── component-host-model.ts │ │ │ ├── index.ts │ │ │ └── use-component-host.ts │ │ ├── index.ts │ │ ├── section │ │ │ ├── index.ts │ │ │ └── section.tsx │ │ ├── show │ │ │ ├── extensions.fragment.ts │ │ │ ├── files.fragment.ts │ │ │ ├── id.fragment.ts │ │ │ ├── index.ts │ │ │ ├── legacy-show │ │ │ │ ├── docs-template.ts │ │ │ │ ├── get-consumer-component.ts │ │ │ │ ├── get-scope-component.ts │ │ │ │ ├── legacy-show.ts │ │ │ │ ├── nothing-to-compare-to.ts │ │ │ │ └── show-legacy-cmd.ts │ │ │ ├── main-file.fragment.ts │ │ │ ├── name.fragment.ts │ │ │ ├── scope.fragment.ts │ │ │ ├── show-fragment.ts │ │ │ └── show.cmd.ts │ │ ├── snap │ │ │ ├── author.ts │ │ │ ├── index.ts │ │ │ └── snap.ts │ │ ├── state.ts │ │ ├── store.ts │ │ ├── tag-map.ts │ │ ├── tag │ │ │ ├── index.ts │ │ │ └── tag.ts │ │ └── ui │ │ │ ├── aspect-page │ │ │ ├── aspect-page.module.scss │ │ │ ├── aspect-page.tsx │ │ │ └── index.ts │ │ │ ├── component-error │ │ │ ├── component-error.tsx │ │ │ └── index.ts │ │ │ ├── component-model │ │ │ ├── component-model.ts │ │ │ └── index.ts │ │ │ ├── component-searcher │ │ │ ├── component-result.module.scss │ │ │ ├── component-result.tsx │ │ │ ├── component-searcher.tsx │ │ │ └── index.ts │ │ │ ├── component.module.scss │ │ │ ├── component.tsx │ │ │ ├── context │ │ │ ├── component-context.ts │ │ │ ├── component-provider.tsx │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── menu │ │ │ ├── index.ts │ │ │ ├── menu-nav.tsx │ │ │ ├── menu.module.scss │ │ │ ├── menu.tsx │ │ │ └── nav-plugin.tsx │ │ │ ├── top-bar-nav │ │ │ ├── index.ts │ │ │ ├── top-bar-nav.module.scss │ │ │ └── top-bar-nav.tsx │ │ │ ├── use-component-from-location.tsx │ │ │ ├── use-component-logs.ts │ │ │ ├── use-component-query.ts │ │ │ ├── use-component.fragments.ts │ │ │ ├── use-component.model.ts │ │ │ ├── use-component.tsx │ │ │ └── use-component.utils.ts │ ├── deprecation │ │ ├── deprecate-cmd.ts │ │ ├── deprecation.aspect.ts │ │ ├── deprecation.composition.tsx │ │ ├── deprecation.docs.mdx │ │ ├── deprecation.fragment.ts │ │ ├── deprecation.graphql.ts │ │ ├── deprecation.main.runtime.ts │ │ ├── deprecation.ui.runtime.tsx │ │ ├── esm.mjs │ │ ├── index.ts │ │ └── undeprecate-cmd.ts │ ├── dev-files │ │ ├── dev-files.aspect.ts │ │ ├── dev-files.composition.tsx │ │ ├── dev-files.docs.mdx │ │ ├── dev-files.fragment.ts │ │ ├── dev-files.graphql.ts │ │ ├── dev-files.main.runtime.ts │ │ ├── dev-files.spec.ts │ │ ├── dev-files.ts │ │ ├── esm.mjs │ │ └── index.ts │ ├── forking │ │ ├── esm.mjs │ │ ├── fork.cmd.ts │ │ ├── forking.aspect.ts │ │ ├── forking.composition.tsx │ │ ├── forking.docs.mdx │ │ ├── forking.fragment.ts │ │ ├── forking.graphql.ts │ │ ├── forking.main.runtime.ts │ │ ├── index.ts │ │ └── scope-fork.cmd.ts │ ├── graph │ │ ├── component-graph │ │ │ ├── component-graph.ts │ │ │ └── index.ts │ │ ├── component-id-graph.ts │ │ ├── duplicate-dependency.ts │ │ ├── edge-type.ts │ │ ├── esm.mjs │ │ ├── graph-builder.ts │ │ ├── graph-cmd.ts │ │ ├── graph.aspect.ts │ │ ├── graph.compare.section.tsx │ │ ├── graph.composition.tsx │ │ ├── graph.docs.md │ │ ├── graph.graphql.ts │ │ ├── graph.main.runtime.ts │ │ ├── graph.ui.runtime.tsx │ │ ├── index.ts │ │ ├── model │ │ │ ├── dependency │ │ │ │ ├── dependency.ts │ │ │ │ └── index.ts │ │ │ └── graph-filters │ │ │ │ ├── graph-filters.ts │ │ │ │ └── index.ts │ │ └── ui │ │ │ ├── component-node │ │ │ ├── component-node.module.scss │ │ │ ├── component-node.tsx │ │ │ ├── index.ts │ │ │ ├── variants.module.scss │ │ │ └── variants.ts │ │ │ ├── dependencies-compare │ │ │ ├── compare-graph-model.ts │ │ │ ├── compare-node-model.ts │ │ │ ├── dependencies-compare.module.scss │ │ │ ├── dependencies-compare.tsx │ │ │ ├── dependency-compare-node.module.scss │ │ │ ├── dependency-compare-node.tsx │ │ │ ├── dependency-compare-variants.module.scss │ │ │ ├── diff-graph.ts │ │ │ └── index.ts │ │ │ ├── dependencies-graph │ │ │ ├── calc-elements.tsx │ │ │ ├── calc-layout.tsx │ │ │ ├── dep-edge │ │ │ │ ├── dep-edge.tsx │ │ │ │ ├── edge.module.scss │ │ │ │ └── index.ts │ │ │ ├── dependencies-graph.module.scss │ │ │ ├── dependencies-graph.tsx │ │ │ ├── graph-context.ts │ │ │ ├── index.ts │ │ │ └── minimap.ts │ │ │ ├── graph-page │ │ │ ├── graph-filters.tsx │ │ │ ├── graph-page.module.scss │ │ │ ├── graph-page.tsx │ │ │ └── index.ts │ │ │ ├── graph.section.tsx │ │ │ └── query │ │ │ ├── edge-model.ts │ │ │ ├── get-graph.query.ts │ │ │ ├── graph-model.ts │ │ │ ├── index.ts │ │ │ ├── node-model.ts │ │ │ ├── use-graph-query.ts │ │ │ └── use-graph.tsx │ ├── isolator │ │ ├── capsule-list.ts │ │ ├── capsule │ │ │ ├── capsule.ts │ │ │ ├── container-exec.ts │ │ │ ├── container.ts │ │ │ └── index.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── isolator.aspect.ts │ │ ├── isolator.composition.tsx │ │ ├── isolator.docs.md │ │ ├── isolator.main.runtime.ts │ │ ├── network.ts │ │ └── symlink-dependencies-to-capsules.ts │ ├── issues │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── issues-cmd.ts │ │ ├── issues.aspect.ts │ │ ├── issues.main.runtime.ts │ │ └── non-exist-issue-error.ts │ ├── lister │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── list-template.ts │ │ ├── list.cmd.ts │ │ ├── lister.aspect.ts │ │ ├── lister.main.runtime.ts │ │ └── no-id-match-wildcard.ts │ ├── merging │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── merge-cmd.ts │ │ ├── merge-status-provider.ts │ │ ├── merging.aspect.ts │ │ └── merging.main.runtime.ts │ ├── modules │ │ └── merge-helper │ │ │ ├── apply-version.ts │ │ │ ├── index.ts │ │ │ ├── merge-files.ts │ │ │ ├── merge-output.ts │ │ │ ├── merge-version.ts │ │ │ ├── three-way-merge.ts │ │ │ └── types.ts │ ├── mover │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── move-cmd.ts │ │ ├── mover.aspect.ts │ │ └── mover.main.runtime.ts │ ├── new-component-helper │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── new-component-helper.aspect.ts │ │ ├── new-component-helper.composition.tsx │ │ ├── new-component-helper.docs.mdx │ │ └── new-component-helper.main.runtime.ts │ ├── refactoring │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── refactor.cmd.ts │ │ ├── refactoring.aspect.ts │ │ └── refactoring.main.runtime.ts │ ├── remove │ │ ├── delete-cmd.ts │ │ ├── delete-component-files.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── recover-cmd.ts │ │ ├── remove-cmd.ts │ │ ├── remove-components.ts │ │ ├── remove-template.ts │ │ ├── remove.aspect.ts │ │ ├── remove.fragment.ts │ │ ├── remove.main.runtime.ts │ │ └── removed-local-objects.ts │ ├── renaming │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── old-scope-not-found.ts │ │ │ └── renaming-tagged.ts │ │ ├── index.ts │ │ ├── rename.cmd.ts │ │ ├── renaming.aspect.ts │ │ ├── renaming.composition.tsx │ │ ├── renaming.docs.mdx │ │ ├── renaming.fragment.ts │ │ ├── renaming.graphql.ts │ │ ├── renaming.main.runtime.ts │ │ ├── renaming.spec.ts │ │ ├── scope-rename-owner.cmd.ts │ │ └── scope-rename.cmd.ts │ ├── snap-distance │ │ ├── fixtures │ │ │ └── source-target-diff-distance.ts │ │ ├── get-diverge-data.spec.ts │ │ ├── get-diverge-data.ts │ │ ├── index.ts │ │ ├── snaps-distance.ts │ │ ├── target-head-not-found.ts │ │ └── traverse-versions.ts │ ├── snapping │ │ ├── esm.mjs │ │ ├── flattened-edges.ts │ │ ├── generate-comp-from-scope.ts │ │ ├── get-flattened-dependencies.ts │ │ ├── index.ts │ │ ├── message-per-component.spec.ts │ │ ├── message-per-component.ts │ │ ├── reset-cmd.ts │ │ ├── reset-component.ts │ │ ├── snap-cmd.ts │ │ ├── snap-distance-cmd.ts │ │ ├── snapping.aspect.ts │ │ ├── snapping.main.runtime.ts │ │ ├── snapping.spec.ts │ │ ├── tag-cmd.ts │ │ ├── version-file-parser.ts │ │ └── version-maker.ts │ ├── sources │ │ ├── abstract-vinyl.ts │ │ ├── artifact-files.ts │ │ ├── artifact.ts │ │ ├── data-to-persist.spec.ts │ │ ├── data-to-persist.ts │ │ ├── dist.ts │ │ ├── file-source-not-found.ts │ │ ├── index.ts │ │ ├── json-file.ts │ │ ├── json-vinyl.ts │ │ ├── license.ts │ │ ├── package-json-file.ts │ │ ├── remove-files-and-empty-dirs-recursively.ts │ │ ├── remove-path.ts │ │ ├── source-file.ts │ │ ├── symlink.ts │ │ └── vinyl-types.ts │ ├── stash │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── stash-data.ts │ │ ├── stash-files.ts │ │ ├── stash.aspect.ts │ │ ├── stash.cmd.ts │ │ └── stash.main.runtime.ts │ ├── status │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── mini-status-cmd.ts │ │ ├── status-cmd.ts │ │ ├── status-formatter.ts │ │ ├── status.aspect.ts │ │ └── status.main.runtime.ts │ ├── testing │ │ └── mock-components │ │ │ ├── index.ts │ │ │ └── mock-components.ts │ └── tracker │ │ ├── add-cmd.ts │ │ ├── add-components.ts │ │ ├── determine-main-file.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ ├── adding-individual-files.ts │ │ ├── duplicate-ids.ts │ │ ├── empty-directory.ts │ │ ├── excluded-main-file.ts │ │ ├── index.ts │ │ ├── main-file-is-dir.ts │ │ ├── missing-main-file-multiple-components.ts │ │ ├── no-files.ts │ │ ├── parent-dir-tracked.ts │ │ ├── path-outside-consumer.ts │ │ ├── paths-not-exist.ts │ │ └── version-should-be-removed.ts │ │ ├── index.ts │ │ ├── tracker.aspect.ts │ │ └── tracker.main.runtime.ts ├── compositions │ ├── aspect-docs │ │ └── compositions │ │ │ ├── compositions.composition.tsx │ │ │ ├── compositions.docs.mdx │ │ │ ├── compositions.mdx │ │ │ └── index.ts │ ├── composition-card │ │ ├── composition-card-skeleton │ │ │ ├── composition-card-skeleton.module.scss │ │ │ ├── composition-card-skeleton.tsx │ │ │ └── index.ts │ │ ├── composition-card.module.scss │ │ ├── composition-card.tsx │ │ └── index.ts │ ├── compositions │ │ ├── composition.section.tsx │ │ ├── composition.ts │ │ ├── compositions.aspect.ts │ │ ├── compositions.composition.tsx │ │ ├── compositions.docs.mdx │ │ ├── compositions.graphql.ts │ │ ├── compositions.main.runtime.ts │ │ ├── compositions.module.scss │ │ ├── compositions.preview-definition.ts │ │ ├── compositions.preview.runtime.ts │ │ ├── compositions.tsx │ │ ├── compositions.ui.runtime.tsx │ │ ├── esm.mjs │ │ ├── index.ts │ │ └── ui │ │ │ ├── composition-preview.tsx │ │ │ ├── compositions-panel-node │ │ │ ├── compositions-panel-node.module.scss │ │ │ ├── compositions-panel-node.tsx │ │ │ └── index.ts │ │ │ ├── compositions-panel │ │ │ ├── compositions-panel.module.scss │ │ │ ├── compositions-panel.tsx │ │ │ ├── live-control-input.module.scss │ │ │ ├── live-control-input.tsx │ │ │ ├── live-control-panel.module.scss │ │ │ └── live-control-panel.tsx │ │ │ └── index.ts │ ├── model │ │ ├── composition-id │ │ │ ├── humanize.docs.md │ │ │ ├── humanize.spec.ts │ │ │ ├── humanize.tsx │ │ │ └── index.ts │ │ └── composition-type │ │ │ ├── composition-type.docs.md │ │ │ ├── composition-type.ts │ │ │ └── index.ts │ └── panels │ │ └── composition-gallery │ │ ├── composition-gallery-skeleton │ │ ├── composition-gallery-skeleton.module.scss │ │ ├── composition-gallery-skeleton.tsx │ │ └── index.ts │ │ ├── composition-gallery.module.scss │ │ ├── composition-gallery.tsx │ │ └── index.ts ├── defender │ ├── eslint-config-mutator │ │ ├── config-mutator.docs.md │ │ ├── config-mutator.ts │ │ └── index.ts │ ├── eslint │ │ ├── eslint.aspect.ts │ │ ├── eslint.composition.tsx │ │ ├── eslint.docs.mdx │ │ ├── eslint.linter.ts │ │ ├── eslint.main.runtime.ts │ │ ├── esm.mjs │ │ └── index.ts │ ├── formatter │ │ ├── esm.mjs │ │ ├── format.cmd.ts │ │ ├── format.task.ts │ │ ├── formatter-context.ts │ │ ├── formatter-env-type.ts │ │ ├── formatter.aspect.ts │ │ ├── formatter.composition.tsx │ │ ├── formatter.docs.mdx │ │ ├── formatter.graphql.ts │ │ ├── formatter.main.runtime.ts │ │ ├── formatter.service.ts │ │ ├── formatter.ts │ │ └── index.ts │ ├── jest │ │ ├── calc-root-dir.ts │ │ ├── error.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── jest.aspect.ts │ │ ├── jest.composition.tsx │ │ ├── jest.docs.mdx │ │ ├── jest.main.runtime.ts │ │ ├── jest.tester.ts │ │ ├── jest.worker.ts │ │ └── watch.ts │ ├── linter │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── lint.cmd.ts │ │ ├── lint.task.ts │ │ ├── linter-context.ts │ │ ├── linter-env-type.ts │ │ ├── linter.aspect.ts │ │ ├── linter.composition.tsx │ │ ├── linter.docs.mdx │ │ ├── linter.graphql.ts │ │ ├── linter.main.runtime.ts │ │ ├── linter.service.ts │ │ └── linter.ts │ ├── mocha │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── mocha.aspect.ts │ │ ├── mocha.composition.tsx │ │ ├── mocha.docs.mdx │ │ └── mocha.main.runtime.ts │ ├── multi-tester │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── multi-tester.aspect.ts │ │ ├── multi-tester.composition.tsx │ │ ├── multi-tester.docs.mdx │ │ ├── multi-tester.main.runtime.ts │ │ └── multi-tester.tester.ts │ ├── prettier-config-mutator │ │ ├── config-mutator.docs.md │ │ ├── config-mutator.ts │ │ └── index.ts │ ├── prettier │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── prettier.aspect.ts │ │ ├── prettier.composition.tsx │ │ ├── prettier.formatter.ts │ │ └── prettier.main.runtime.ts │ ├── tester │ │ ├── coverage-label.module.scss │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── index.ts │ │ │ ├── no-matching-components.ts │ │ │ └── no-test-files-found.ts │ │ ├── index.ts │ │ ├── test.cmd.ts │ │ ├── tester-env.ts │ │ ├── tester.aspect.ts │ │ ├── tester.composition.tsx │ │ ├── tester.docs.mdx │ │ ├── tester.graphql.ts │ │ ├── tester.main.runtime.ts │ │ ├── tester.service.ts │ │ ├── tester.task.ts │ │ ├── tester.ts │ │ ├── tester.ui.runtime.tsx │ │ ├── tests.section.tsx │ │ └── utils │ │ │ ├── detect-spec-files.ts │ │ │ ├── index.ts │ │ │ └── junit-generator.ts │ └── validator │ │ ├── index.ts │ │ ├── validate.cmd.ts │ │ ├── validator.aspect.ts │ │ └── validator.main.runtime.ts ├── dependencies │ ├── aspect-docs │ │ ├── dependency-resolver │ │ │ ├── dependency-resolver.composition.tsx │ │ │ ├── dependency-resolver.docs.mdx │ │ │ ├── dependency-resolver.mdx │ │ │ └── index.ts │ │ ├── pnpm │ │ │ ├── index.ts │ │ │ ├── pnpm.composition.tsx │ │ │ ├── pnpm.docs.mdx │ │ │ └── pnpm.mdx │ │ └── yarn │ │ │ ├── index.ts │ │ │ ├── yarn.composition.tsx │ │ │ ├── yarn.docs.mdx │ │ │ └── yarn.mdx │ ├── dependencies │ │ ├── dependencies-cmd.ts │ │ ├── dependencies-loader │ │ │ ├── README.md │ │ │ ├── apply-overrides.ts │ │ │ ├── auto-detect-deps.ts │ │ │ ├── dependencies-data.ts │ │ │ ├── dependencies-loader.ts │ │ │ ├── dependencies-versions-resolver.ts │ │ │ ├── index.ts │ │ │ ├── overrides-dependencies.ts │ │ │ ├── package-to-definetly-typed.spec.ts │ │ │ └── package-to-definetly-typed.ts │ │ ├── dependencies.aspect.ts │ │ ├── dependencies.main.runtime.ts │ │ ├── dependencies.spec.ts │ │ ├── dependents-cmd.ts │ │ ├── dependents.ts │ │ ├── esm.mjs │ │ ├── files-dependency-builder │ │ │ ├── build-tree.spec.ts │ │ │ ├── build-tree.ts │ │ │ ├── dependency-tree │ │ │ │ ├── Config.ts │ │ │ │ ├── index.spec.ts │ │ │ │ └── index.ts │ │ │ ├── detectives │ │ │ │ ├── detective-css │ │ │ │ │ └── index.ts │ │ │ │ ├── detective-es6 │ │ │ │ │ └── index.ts │ │ │ │ ├── detective-less │ │ │ │ │ └── index.ts │ │ │ │ ├── detective-sass │ │ │ │ │ └── index.ts │ │ │ │ ├── detective-scss │ │ │ │ │ └── index.ts │ │ │ │ └── detective-typescript │ │ │ │ │ └── index.ts │ │ │ ├── filing-cabinet │ │ │ │ ├── index.spec.ts │ │ │ │ └── index.ts │ │ │ ├── fixtures │ │ │ │ ├── build-tree │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── not-link-file │ │ │ │ │ │ ├── file-a.js │ │ │ │ │ │ ├── file-b.js │ │ │ │ │ │ └── file-c.js │ │ │ │ │ ├── tree-shaking-cycle │ │ │ │ │ │ ├── foo.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── is-string.js │ │ │ │ │ │ └── self-cycle.js │ │ │ │ │ └── unparsed.js │ │ │ │ ├── dependency-tree │ │ │ │ │ ├── amd │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── commonjs │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ └── c.js │ │ │ │ │ ├── onlyRealDeps │ │ │ │ │ │ └── a.js │ │ │ │ │ └── webpack │ │ │ │ │ │ ├── aliased.js │ │ │ │ │ │ └── unaliased.js │ │ │ │ ├── filing-cabinet │ │ │ │ │ ├── ast.js │ │ │ │ │ ├── foo.jsx │ │ │ │ │ ├── foo2.scss │ │ │ │ │ ├── mockedJSFiles.js │ │ │ │ │ ├── root1 │ │ │ │ │ │ └── mod1.js │ │ │ │ │ ├── root2 │ │ │ │ │ │ └── mod2.js │ │ │ │ │ └── webpack.config.js │ │ │ │ ├── missing-deps.js │ │ │ │ ├── precinct │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ ├── amd.js │ │ │ │ │ ├── bar.foo │ │ │ │ │ ├── cjsExportLazy.js │ │ │ │ │ ├── commonjs.js │ │ │ │ │ ├── coreModules.js │ │ │ │ │ ├── es6.js │ │ │ │ │ ├── es6MixedExportLazy.js │ │ │ │ │ ├── es7.js │ │ │ │ │ ├── exampleAST.js │ │ │ │ │ ├── foo.foo │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── styles.less │ │ │ │ │ ├── styles.sass │ │ │ │ │ ├── styles.scss │ │ │ │ │ ├── styles.styl │ │ │ │ │ └── unparseable.js │ │ │ │ └── unsupported-file.pdf │ │ │ ├── generate-tree-madge.ts │ │ │ ├── index.ts │ │ │ ├── missing-handler.ts │ │ │ ├── path-map.ts │ │ │ ├── precinct │ │ │ │ ├── index.spec.ts │ │ │ │ └── index.ts │ │ │ └── types │ │ │ │ ├── dependency-tree-type.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── resolve-pkg-data.ts │ │ └── template.ts │ ├── dependency-resolver │ │ ├── apply-updates.spec.ts │ │ ├── apply-updates.ts │ │ ├── dependencies.service.ts │ │ ├── dependencies │ │ │ ├── base-dependency.ts │ │ │ ├── component-dependency │ │ │ │ ├── component-dependency-factory.ts │ │ │ │ ├── component-dependency.ts │ │ │ │ └── index.ts │ │ │ ├── constants.ts │ │ │ ├── dependency-factory.ts │ │ │ ├── dependency-list-factory.ts │ │ │ ├── dependency-list.ts │ │ │ ├── dependency.ts │ │ │ ├── exceptions │ │ │ │ ├── index.ts │ │ │ │ └── unknown-dep-type.ts │ │ │ └── index.ts │ │ ├── dependency-env.ts │ │ ├── dependency-installer.ts │ │ ├── dependency-linker.ts │ │ ├── dependency-resolver-workspace-config.ts │ │ ├── dependency-resolver.aspect.ts │ │ ├── dependency-resolver.composition.tsx │ │ ├── dependency-resolver.docs.mdx │ │ ├── dependency-resolver.graphql.ts │ │ ├── dependency-resolver.main.runtime.spec.ts │ │ ├── dependency-resolver.main.runtime.ts │ │ ├── dependency-version-resolver.ts │ │ ├── detector-hook.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── core-aspect-link-error.ts │ │ │ ├── index.ts │ │ │ ├── invalid-version-with-prefix.ts │ │ │ ├── main-aspect-not-installable.ts │ │ │ ├── main-aspect-not-linkable.ts │ │ │ ├── non-aspect-core-package-link-error.ts │ │ │ ├── package-manager-not-found.ts │ │ │ └── root-dir-not-defined.ts │ │ ├── extend-with-components-from-dir.ts │ │ ├── fixtures │ │ │ └── cafile.txt │ │ ├── get-all-policy-pkgs.spec.ts │ │ ├── get-all-policy-pkgs.ts │ │ ├── index.ts │ │ ├── manifest │ │ │ ├── component-manifest.ts │ │ │ ├── deduping │ │ │ │ ├── dedupe-dependencies.ts │ │ │ │ ├── hoist-dependencies.spec.ts │ │ │ │ ├── hoist-dependencies.ts │ │ │ │ ├── index-by-dep-id.ts │ │ │ │ ├── index.ts │ │ │ │ └── merge-with-root.ts │ │ │ ├── index.ts │ │ │ ├── manifest.ts │ │ │ ├── update-dependency-version.spec.ts │ │ │ ├── update-dependency-version.ts │ │ │ ├── workspace-manifest-factory.ts │ │ │ └── workspace-manifest.ts │ │ ├── package-manager.ts │ │ ├── policy │ │ │ ├── env-policy │ │ │ │ ├── env-policy.ts │ │ │ │ ├── index.ts │ │ │ │ ├── validate-env-policy.spec.ts │ │ │ │ └── validate-env-policy.ts │ │ │ ├── index.ts │ │ │ ├── policy.ts │ │ │ ├── variant-policy │ │ │ │ ├── index.ts │ │ │ │ └── variant-policy.ts │ │ │ └── workspace-policy │ │ │ │ ├── exceptions │ │ │ │ ├── entry-already-exist.ts │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── workspace-policy-factory.ts │ │ │ │ └── workspace-policy.ts │ │ ├── show-fragments │ │ │ ├── dependencies.fragment.ts │ │ │ ├── dev-dependencies.fragment.ts │ │ │ ├── index.ts │ │ │ ├── peer-dependencies.fragment.ts │ │ │ └── serialize-by-lifecycle.ts │ │ └── types.ts │ ├── fs │ │ └── linked-dependencies │ │ │ ├── index.ts │ │ │ ├── linked-dependencies.docs.mdx │ │ │ └── linked-dependencies.ts │ ├── pnpm │ │ ├── esm.mjs │ │ ├── get-proxy-config.ts │ │ ├── get-registries.ts │ │ ├── index.ts │ │ ├── lockfile-deps-graph-converter.spec.ts │ │ ├── lockfile-deps-graph-converter.ts │ │ ├── log-converter.ts │ │ ├── lynx.ts │ │ ├── pnpm-error-to-bit-error.spec.ts │ │ ├── pnpm-error-to-bit-error.ts │ │ ├── pnpm-prune-modules.ts │ │ ├── pnpm.aspect.ts │ │ ├── pnpm.composition.tsx │ │ ├── pnpm.docs.mdx │ │ ├── pnpm.main.runtime.ts │ │ ├── pnpm.package-manager.ts │ │ ├── pnpm.ui.runtime.tsx │ │ └── read-config.ts │ └── yarn │ │ ├── create-root-components-dir.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── yarn.aspect.ts │ │ ├── yarn.composition.tsx │ │ ├── yarn.docs.mdx │ │ ├── yarn.main.runtime.ts │ │ ├── yarn.package-manager.ts │ │ └── yarn.ui.runtime.tsx ├── docs │ ├── docs │ │ ├── default-doc-reader.ts │ │ ├── doc-module.ts │ │ ├── doc-reader.ts │ │ ├── docs-store.tsx │ │ ├── docs.aspect.ts │ │ ├── docs.composition.tsx │ │ ├── docs.data.tsx │ │ ├── docs.docs.mdx │ │ ├── docs.graphql.ts │ │ ├── docs.main.runtime.ts │ │ ├── docs.preview-definition.ts │ │ ├── docs.preview.runtime.tsx │ │ ├── docs.service.ts │ │ ├── docs.ts │ │ ├── docs.ui.runtime.tsx │ │ ├── esm.mjs │ │ ├── events │ │ │ ├── click-inside-an-iframe.ts │ │ │ └── index.ts │ │ ├── exceptions │ │ │ ├── doc-read-error.ts │ │ │ ├── file-extension-not-supported.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── overview.section.tsx │ │ └── overview │ │ │ ├── index.ts │ │ │ ├── overview.module.scss │ │ │ ├── overview.tsx │ │ │ └── readme-skeleton.tsx │ └── ui │ │ └── queries │ │ └── get-docs │ │ ├── get-docs.ts │ │ └── index.ts ├── envs │ ├── aspect-docs │ │ └── envs │ │ │ ├── envs.composition.tsx │ │ │ ├── envs.docs.mdx │ │ │ ├── envs.mdx │ │ │ └── index.ts │ ├── env │ │ ├── env.aspect.ts │ │ ├── env.composition.tsx │ │ ├── env.docs.mdx │ │ ├── env.env.ts │ │ ├── env.main.runtime.ts │ │ ├── esm.mjs │ │ └── index.ts │ ├── envs │ │ ├── context │ │ │ ├── context.ts │ │ │ └── index.ts │ │ ├── env-definition.ts │ │ ├── env-interface.ts │ │ ├── env-jsonc.detector.ts │ │ ├── env-service-list.ts │ │ ├── env.composition.tsx │ │ ├── env.fragment.ts │ │ ├── env.plugin.ts │ │ ├── environment.ts │ │ ├── environments.aspect.ts │ │ ├── environments.graphql.ts │ │ ├── environments.main.runtime.ts │ │ ├── envs.cmd.ts │ │ ├── envs.docs.mdx │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── env-not-configured-for-component.ts │ │ │ ├── env-not-found-in-runtime.ts │ │ │ ├── env-not-found.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── runtime │ │ │ ├── env-runtime.ts │ │ │ ├── envs-execution-result.ts │ │ │ ├── index.ts │ │ │ └── runtime.ts │ │ └── services │ │ │ ├── concrete-service.ts │ │ │ ├── index.ts │ │ │ ├── service-handler-context.ts │ │ │ ├── service-handler.ts │ │ │ └── service.ts │ └── ui │ │ └── env-icon │ │ ├── env-icon.tsx │ │ └── index.ts ├── explorer │ ├── command-bar │ │ ├── command-bar.aspect.ts │ │ ├── command-bar.button.module.scss │ │ ├── command-bar.button.tsx │ │ ├── command-bar.commands.ts │ │ ├── command-bar.composition.tsx │ │ ├── command-bar.docs.mdx │ │ ├── command-bar.module.scss │ │ ├── command-bar.preview.runtime.tsx │ │ ├── command-bar.ui.runtime.tsx │ │ ├── duplicate-command-error.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── keybinding.ts │ │ ├── model │ │ │ └── key-event │ │ │ │ ├── index.ts │ │ │ │ ├── key-event.tsx │ │ │ │ └── serialize-keyboard-event.ts │ │ ├── mousetrap-stub.ts │ │ ├── searchers │ │ │ ├── command-searcher │ │ │ │ ├── command-result.module.scss │ │ │ │ ├── command-result.tsx │ │ │ │ ├── command-searcher.tsx │ │ │ │ ├── command.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── search-provider.ts │ │ └── types.tsx │ └── insights │ │ ├── all-insights │ │ ├── duplicate-dependencies.ts │ │ └── find-circulars.ts │ │ ├── core-insights-getter.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ ├── insight-already-exists.ts │ │ ├── insight-not-found.ts │ │ └── no-data-for-insight.ts │ │ ├── index.ts │ │ ├── insight-manager.ts │ │ ├── insight.ts │ │ ├── insights.aspect.ts │ │ ├── insights.cmd.ts │ │ ├── insights.compositon.tsx │ │ ├── insights.docs.mdx │ │ └── insights.main.runtime.ts ├── generator │ ├── aspect-docs │ │ └── generator │ │ │ ├── generator.composition.tsx │ │ │ ├── generator.docs.mdx │ │ │ ├── generator.mdx │ │ │ └── index.ts │ └── generator │ │ ├── component-generator.ts │ │ ├── component-template.ts │ │ ├── create.cmd.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ └── workspace-path-exists.ts │ │ ├── generator-env-type.ts │ │ ├── generator.aspect.ts │ │ ├── generator.composition.tsx │ │ ├── generator.docs.mdx │ │ ├── generator.graphql.ts │ │ ├── generator.main.runtime.ts │ │ ├── generator.service.tsx │ │ ├── index.ts │ │ ├── new.cmd.ts │ │ ├── starter-list.ts │ │ ├── starter.plugin.ts │ │ ├── template-list.ts │ │ ├── templates.cmd.ts │ │ ├── templates │ │ ├── basic │ │ │ ├── basic.starter.ts │ │ │ ├── index.ts │ │ │ └── template │ │ │ │ └── files │ │ │ │ ├── package-json.ts │ │ │ │ └── workspace-config.ts │ │ ├── component-generator-standalone │ │ │ ├── files │ │ │ │ ├── aspect-file.ts │ │ │ │ ├── docs-file.ts │ │ │ │ ├── index.ts │ │ │ │ └── main-runtime.ts │ │ │ └── index.ts │ │ ├── component-generator │ │ │ ├── files │ │ │ │ ├── component-template-files │ │ │ │ │ ├── component.ts │ │ │ │ │ ├── composition.ts │ │ │ │ │ ├── index-file.ts │ │ │ │ │ └── test.ts │ │ │ │ ├── component-template.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── starter-standalone │ │ │ ├── files │ │ │ │ ├── doc-file.ts │ │ │ │ ├── git-ignore-tpl.ts │ │ │ │ ├── index.ts │ │ │ │ ├── starter.ts │ │ │ │ └── workspace-config-tpl.ts │ │ │ └── index.ts │ │ └── starter │ │ │ ├── files │ │ │ ├── doc-file.ts │ │ │ ├── generate-files.ts │ │ │ ├── git-ignore-tpl.ts │ │ │ ├── index.ts │ │ │ ├── starter.ts │ │ │ └── workspace-config-tpl.ts │ │ │ └── index.ts │ │ ├── types.ts │ │ ├── workspace-generator.ts │ │ └── workspace-template.ts ├── git │ ├── ci │ │ ├── ci.aspect.ts │ │ ├── ci.cmd.ts │ │ ├── ci.docs.mdx │ │ ├── ci.main.runtime.ts │ │ ├── commands │ │ │ ├── merge.cmd.ts │ │ │ ├── pr.cmd.ts │ │ │ └── verify.cmd.ts │ │ ├── git.ts │ │ ├── index.ts │ │ └── source-branch-detector.ts │ ├── git │ │ ├── esm.mjs │ │ ├── git.aspect.ts │ │ ├── git.cmd.ts │ │ ├── git.main.runtime.ts │ │ ├── index.ts │ │ ├── merge-bitmaps.cmd.ts │ │ └── set-git-merge-driver.cmd.ts │ └── modules │ │ ├── git-executable │ │ ├── exceptions │ │ │ └── git-not-found.ts │ │ ├── git-executable.ts │ │ └── index.ts │ │ └── ignore-file-reader │ │ ├── ignore.ts │ │ └── index.ts ├── harmony │ ├── api-server │ │ ├── api-for-ide.ts │ │ ├── api-server.aspect.ts │ │ ├── api-server.main.runtime.ts │ │ ├── cli-raw.route.ts │ │ ├── cli.route.ts │ │ ├── esm.mjs │ │ ├── ide.route.ts │ │ ├── index.ts │ │ ├── server.cmd.ts │ │ └── sse-events.route.ts │ ├── application │ │ ├── app-build-context.ts │ │ ├── app-build-result.ts │ │ ├── app-context.ts │ │ ├── app-deploy-context.ts │ │ ├── app-instance.ts │ │ ├── app-server.ts │ │ ├── app-type-list.ts │ │ ├── app-type.plugin.ts │ │ ├── app.cmd.ts │ │ ├── app.plugin.ts │ │ ├── application-type.ts │ │ ├── application.aspect.ts │ │ ├── application.composition.tsx │ │ ├── application.docs.mdx │ │ ├── application.main.runtime.ts │ │ ├── application.service.ts │ │ ├── application.ts │ │ ├── apps-env-type.ts │ │ ├── build-application.task.ts │ │ ├── deploy.task.ts │ │ ├── deployment-provider.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── app-no-ssr.ts │ │ │ ├── app-not-found.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── run.cmd.ts │ ├── aspect-docs │ │ ├── logger │ │ │ ├── index.ts │ │ │ ├── logger.composition.tsx │ │ │ ├── logger.docs.mdx │ │ │ └── logger.mdx │ │ └── node │ │ │ ├── index.ts │ │ │ ├── node.composition.tsx │ │ │ ├── node.docs.mdx │ │ │ └── node.mdx │ ├── aspect-loader │ │ ├── aspect-definition.ts │ │ ├── aspect-loader.aspect.ts │ │ ├── aspect-loader.composition.tsx │ │ ├── aspect-loader.docs.mdx │ │ ├── aspect-loader.graphql.ts │ │ ├── aspect-loader.main.runtime.ts │ │ ├── constants.ts │ │ ├── core-aspects.spec.ts │ │ ├── core-aspects.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── cannot-load-extension.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── is-esm-module.ts │ │ ├── plugin-definition.ts │ │ ├── plugin.ts │ │ └── plugins.ts │ ├── aspect │ │ ├── aspect.aspect.ts │ │ ├── aspect.cmd.ts │ │ ├── aspect.composition.tsx │ │ ├── aspect.docs.mdx │ │ ├── aspect.env.ts │ │ ├── aspect.main.runtime.ts │ │ ├── aspect.templates.ts │ │ ├── aspect.ui.runtime.tsx │ │ ├── babel │ │ │ └── babel-config.ts │ │ ├── core-exporter.task.ts │ │ ├── eslint │ │ │ └── eslintrc.js │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── jest │ │ │ └── jest.config.js │ │ ├── prettier │ │ │ └── prettier.config.js │ │ ├── templates │ │ │ └── aspect │ │ │ │ ├── files │ │ │ │ ├── aspect-file.ts │ │ │ │ ├── config-file.ts │ │ │ │ ├── index.ts │ │ │ │ └── main-runtime.ts │ │ │ │ └── index.ts │ │ └── typescript │ │ │ └── tsconfig.json │ ├── bit │ │ ├── app.ts │ │ ├── autocomplete.ts │ │ ├── bin │ │ │ └── bit │ │ ├── bit.aspect.ts │ │ ├── bit.compositions.tsx │ │ ├── bit.docs.tsx │ │ ├── bit.main.runtime.ts │ │ ├── bit.provider.ts │ │ ├── bootstrap.ts │ │ ├── esm.mjs │ │ ├── hook-require.ts │ │ ├── hooks │ │ │ ├── hook.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── load-bit.ts │ │ ├── manifests.ts │ │ ├── run-bit.ts │ │ ├── server-commander.ts │ │ └── server-forever.ts │ ├── cache │ │ ├── cache.aspect.ts │ │ ├── cache.composition.tsx │ │ ├── cache.docs.mdx │ │ ├── cache.main.runtime.ts │ │ ├── cache.spec.ts │ │ ├── esm.mjs │ │ └── index.ts │ ├── cli-reference │ │ ├── cli-reference.composition.tsx │ │ ├── cli-reference.docs.mdx │ │ ├── cli-reference.json │ │ ├── cli-reference.mdx │ │ └── index.ts │ ├── cli │ │ ├── cli-parser.ts │ │ ├── cli.aspect.ts │ │ ├── cli.cmd.ts │ │ ├── cli.composition.tsx │ │ ├── cli.docs.mdx │ │ ├── cli.main.runtime.ts │ │ ├── command-groups.ts │ │ ├── command-helper.ts │ │ ├── command-runner.ts │ │ ├── command.ts │ │ ├── completion.cmd.ts │ │ ├── default-error-handler.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── already-exists.ts │ │ │ ├── command-not-found.ts │ │ │ ├── index.ts │ │ │ └── yargs-exit-workaround.ts │ │ ├── generate-doc-md.ts │ │ ├── get-command-id.ts │ │ ├── global-flags.ts │ │ ├── handle-errors.ts │ │ ├── help.cmd.ts │ │ ├── help.ts │ │ ├── index.ts │ │ ├── version.cmd.ts │ │ └── yargs-adapter.ts │ ├── config │ │ ├── config.aspect.ts │ │ ├── config.main.runtime.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── extension-already-configured.ts │ │ │ ├── index.ts │ │ │ └── invalid-config-file.ts │ │ ├── index.ts │ │ ├── readme.md │ │ ├── schema.json │ │ ├── types.ts │ │ ├── workspace-config.ts │ │ └── workspace-template.jsonc │ ├── diagnostic │ │ ├── diagnostic.aspect.ts │ │ ├── diagnostic.graphql.ts │ │ ├── diagnostic.main.runtime.ts │ │ ├── diagnostic.route.ts │ │ ├── diagnostic.ts │ │ ├── esm.mjs │ │ └── index.ts │ ├── doctor │ │ ├── core-diagnoses │ │ │ ├── broken-symlink-files.ts │ │ │ ├── orphan-symlink-objects.ts │ │ │ ├── validate-bit-version.ts │ │ │ ├── validate-git-exec.ts │ │ │ ├── validate-npm-exec.ts │ │ │ ├── validate-scope-objects.ts │ │ │ ├── validate-workspace-bit-json-syntax.ts │ │ │ └── validate-yarn-exec.ts │ │ ├── diagnosis-list-template.ts │ │ ├── diagnosis.ts │ │ ├── doctor-cmd.ts │ │ ├── doctor-context.ts │ │ ├── doctor-registrar-builder.ts │ │ ├── doctor-registrar.ts │ │ ├── doctor-results-template.ts │ │ ├── doctor.aspect.ts │ │ ├── doctor.graphql.ts │ │ ├── doctor.main.runtime.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── diagnosis-not-found.ts │ │ │ └── missing-diagnosis-name.ts │ │ ├── index.ts │ │ └── run-doctor-on-scope.ts │ ├── express │ │ ├── esm.mjs │ │ ├── express.aspect.ts │ │ ├── express.composition.tsx │ │ ├── express.docs.mdx │ │ ├── express.main.runtime.ts │ │ ├── index.ts │ │ ├── middleware-manifest.ts │ │ ├── middlewares │ │ │ ├── error.ts │ │ │ └── index.ts │ │ └── types │ │ │ ├── index.ts │ │ │ ├── next.ts │ │ │ ├── request.ts │ │ │ ├── response.ts │ │ │ └── route.ts │ ├── global-config │ │ ├── esm.mjs │ │ ├── global-config.aspect.ts │ │ ├── global-config.composition.tsx │ │ ├── global-config.docs.md │ │ ├── global-config.main.runtime.ts │ │ ├── globals.cmd.ts │ │ ├── index.ts │ │ ├── remote-cmd.ts │ │ ├── remote.ts │ │ └── system.cmd.ts │ ├── graphql │ │ ├── create-link.ts │ │ ├── create-remote-schemas │ │ │ ├── create-remote-schemas.ts │ │ │ └── index.ts │ │ ├── esm.mjs │ │ ├── graphql-error.ts │ │ ├── graphql-provider │ │ │ ├── graphql-provider.tsx │ │ │ └── index.ts │ │ ├── graphql-server.ts │ │ ├── graphql.aspect.ts │ │ ├── graphql.composition.tsx │ │ ├── graphql.docs.mdx │ │ ├── graphql.main.runtime.ts │ │ ├── graphql.ui.runtime.tsx │ │ ├── index.ts │ │ ├── logging.ts │ │ ├── render-lifecycle.tsx │ │ └── schema.ts │ ├── host-initializer │ │ ├── create-consumer.ts │ │ ├── esm.mjs │ │ ├── host-initializer.aspect.ts │ │ ├── host-initializer.main.runtime.ts │ │ ├── index.ts │ │ ├── init-cmd.ts │ │ └── objects-without-consumer.ts │ ├── ipc-events │ │ ├── esm.mjs │ │ ├── example-diagram.md │ │ ├── index.ts │ │ ├── ipc-events.aspect.ts │ │ └── ipc-events.main.runtime.ts │ ├── logger │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── logger.aspect.ts │ │ ├── logger.composition.tsx │ │ ├── logger.docs.mdx │ │ ├── logger.main.runtime.ts │ │ ├── logger.ts │ │ └── long-process-logger.ts │ ├── modules │ │ ├── concurrency │ │ │ ├── concurrency.ts │ │ │ └── index.ts │ │ ├── feature-toggle │ │ │ ├── feature-toggle.spec.ts │ │ │ └── feature-toggle.ts │ │ ├── get-basic-log │ │ │ ├── basic-log.ts │ │ │ └── index.ts │ │ ├── in-memory-cache │ │ │ ├── cache-factory.ts │ │ │ ├── in-memory-cache.ts │ │ │ ├── index.ts │ │ │ └── lru-cache-adapter.ts │ │ ├── requireable-component │ │ │ ├── index.ts │ │ │ └── requireable-component.ts │ │ ├── resolved-component │ │ │ ├── index.ts │ │ │ └── resolved-component.ts │ │ └── send-server-sent-events │ │ │ ├── index.ts │ │ │ └── send-sse.ts │ ├── node │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── jest │ │ │ ├── index.ts │ │ │ └── jest.config.js │ │ ├── node-app-options.ts │ │ ├── node.app-type.ts │ │ ├── node.application.ts │ │ ├── node.aspect.ts │ │ ├── node.composition.tsx │ │ ├── node.docs.mdx │ │ ├── node.env.ts │ │ ├── node.main.runtime.ts │ │ ├── node.templates.ts │ │ └── node.ui.runtime.tsx │ ├── pubsub │ │ ├── bit-base-event.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── no-parent-error.ts │ │ ├── pubsub-context.tsx │ │ ├── pubsub.aspect.ts │ │ ├── pubsub.composition.tsx │ │ ├── pubsub.docs.mdx │ │ ├── pubsub.main.runtime.ts │ │ ├── pubsub.preview.runtime.ts │ │ ├── pubsub.ui.runtime.ts │ │ └── types.ts │ ├── testing │ │ └── load-aspect │ │ │ ├── core-aspects-ids.json │ │ │ ├── index.ts │ │ │ └── load-aspect.ts │ ├── ui │ │ └── aspect-box │ │ │ ├── aspect-box.module.scss │ │ │ ├── aspect-box.tsx │ │ │ └── index.ts │ └── worker │ │ ├── esm.mjs │ │ ├── expose.ts │ │ ├── harmony-worker.ts │ │ ├── index.ts │ │ ├── node-endpoint.ts │ │ ├── worker-manifest.ts │ │ ├── worker.aspect.ts │ │ ├── worker.composition.tsx │ │ ├── worker.docs.mdx │ │ └── worker.main.runtime.ts ├── html │ ├── aspect-docs │ │ └── html │ │ │ ├── html.composition.tsx │ │ │ ├── html.docs.mdx │ │ │ ├── html.mdx │ │ │ └── index.ts │ └── modules │ │ ├── create-element-from-string │ │ ├── create-element-from-string.ts │ │ └── index.ts │ │ └── fetch-html-from-url │ │ ├── fetch-html-from-url.ts │ │ └── index.ts ├── lanes │ ├── diff │ │ ├── index.ts │ │ ├── lane-diff-generator.ts │ │ ├── lane-diff.cmd.ts │ │ └── lane-history-diff.cmd.ts │ ├── entities │ │ └── lane-diff │ │ │ ├── change-type.ts │ │ │ ├── index.ts │ │ │ ├── lane-component-diff.ts │ │ │ ├── lane-diff.docs.mdx │ │ │ └── lane-diff.ts │ ├── lanes │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── lane.cmd.ts │ │ ├── lanes.aspect.ts │ │ ├── lanes.composition.tsx │ │ ├── lanes.create.route.ts │ │ ├── lanes.delete.route.ts │ │ ├── lanes.docs.mdx │ │ ├── lanes.graphql.ts │ │ ├── lanes.main.runtime.ts │ │ ├── lanes.restore.route.ts │ │ ├── lanes.spec.ts │ │ ├── lanes.ui.module.scss │ │ ├── lanes.ui.runtime.tsx │ │ ├── remove-lanes.ts │ │ ├── switch-lanes.ts │ │ └── switch.cmd.ts │ ├── merge-lanes │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ └── missing-comps-to-merge.ts │ │ ├── index.ts │ │ ├── lanes-check-conflicts.route.ts │ │ ├── last-merged.ts │ │ ├── merge-abort.cmd.ts │ │ ├── merge-lane.cmd.ts │ │ ├── merge-lanes.aspect.ts │ │ ├── merge-lanes.main.runtime.ts │ │ └── merge-move.cmd.ts │ └── modules │ │ └── create-lane │ │ ├── create-lane.ts │ │ └── index.ts ├── mcp │ └── cli-mcp-server │ │ ├── README.docs.mdx │ │ ├── cli-mcp-server.aspect.ts │ │ ├── cli-mcp-server.main.runtime.ts │ │ ├── cli-mcp-server.spec.ts │ │ ├── index.ts │ │ ├── mcp-server.cmd.ts │ │ ├── remote-component-utils.ts │ │ ├── rules-cmd.ts │ │ └── setup-cmd.ts ├── mdx │ ├── aspect-docs │ │ └── mdx │ │ │ ├── index.ts │ │ │ ├── mdx.composition.tsx │ │ │ ├── mdx.docs.mdx │ │ │ └── mdx.mdx │ ├── mdx │ │ ├── babel │ │ │ └── babel.config.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── mdx.aspect.ts │ │ ├── mdx.compiler.ts │ │ ├── mdx.composition.tsx │ │ ├── mdx.detector.spec.ts │ │ ├── mdx.detector.ts │ │ ├── mdx.doc-reader.ts │ │ ├── mdx.docs.mdx │ │ ├── mdx.env.ts │ │ ├── mdx.main.runtime.ts │ │ ├── mdx.templates.ts │ │ └── mdx.ui.runtime.tsx │ └── readme │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── readme.aspect.ts │ │ ├── readme.env.ts │ │ └── readme.main.runtime.ts ├── pipelines │ ├── aspect-docs │ │ └── builder │ │ │ ├── builder.composition.tsx │ │ │ ├── builder.docs.mdx │ │ │ ├── builder.mdx │ │ │ └── index.ts │ ├── builder │ │ ├── artifact │ │ │ ├── artifact-definition.ts │ │ │ ├── artifact-extractor.ts │ │ │ ├── artifact-factory.ts │ │ │ ├── artifact-list.ts │ │ │ ├── artifact.ts │ │ │ ├── artifacts.cmd.ts │ │ │ ├── extension-artifact.ts │ │ │ ├── fs-artifact.ts │ │ │ └── index.ts │ │ ├── build-pipe.ts │ │ ├── build-pipeline-order.ts │ │ ├── build-pipeline-result-list.ts │ │ ├── build-task.ts │ │ ├── build.cmd.ts │ │ ├── builder-env-type.ts │ │ ├── builder.aspect.ts │ │ ├── builder.composition.tsx │ │ ├── builder.docs.mdx │ │ ├── builder.graphql.ts │ │ ├── builder.main.runtime.ts │ │ ├── builder.route.ts │ │ ├── builder.service.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── artifact-definition-no-glob.ts │ │ │ ├── artifact-storage-error.ts │ │ │ ├── capsule-not-found.ts │ │ │ ├── components-have-issues.ts │ │ │ ├── index.ts │ │ │ └── invalid-task.ts │ │ ├── index.ts │ │ ├── pipeline.ts │ │ ├── pipeline │ │ │ ├── index.ts │ │ │ └── pipeline-results.ts │ │ ├── storage │ │ │ ├── default-resolver.ts │ │ │ ├── index.ts │ │ │ └── storage-resolver.ts │ │ ├── task-results-list.ts │ │ ├── task.ts │ │ ├── tasks-queue.ts │ │ ├── templates │ │ │ └── build-task │ │ │ │ ├── files │ │ │ │ ├── index-file.ts │ │ │ │ └── task-file.ts │ │ │ │ └── index.ts │ │ └── types.ts │ └── modules │ │ ├── builder-data │ │ ├── builder-data.spec.ts │ │ ├── builder-data.ts │ │ └── index.ts │ │ └── merge-component-results │ │ ├── index.ts │ │ └── merge-component-results.ts ├── pkg │ ├── aspect-docs │ │ └── pkg │ │ │ ├── index.ts │ │ │ ├── pkg.composition.tsx │ │ │ ├── pkg.docs.mdx │ │ │ └── pkg.mdx │ ├── modules │ │ └── semver-helper │ │ │ ├── index.ts │ │ │ ├── semver-helper.spec.ts │ │ │ └── semver-helper.ts │ └── pkg │ │ ├── esm.mjs │ │ ├── exceptions │ │ ├── index.ts │ │ ├── package-tar-filet-not-found.ts │ │ ├── pkg-artifact-not-found.ts │ │ └── scope-not-found.ts │ │ ├── index.ts │ │ ├── pack.cmd.tsx │ │ ├── pack.task.ts │ │ ├── package-dependency │ │ ├── index.ts │ │ ├── package-dependency-factory.ts │ │ └── package-dependency.ts │ │ ├── package-env-type.ts │ │ ├── package-generator.ts │ │ ├── package.fragment.ts │ │ ├── package.route.ts │ │ ├── packer.ts │ │ ├── pkg-artifact.ts │ │ ├── pkg.aspect.ts │ │ ├── pkg.composition.tsx │ │ ├── pkg.docs.mdx │ │ ├── pkg.graphql.ts │ │ ├── pkg.main.runtime.ts │ │ ├── pkg.service.ts │ │ ├── pkg.ui.runtime.tsx │ │ ├── prepare-packages.task.ts │ │ ├── publish-dry-run.task.ts │ │ ├── publish.cmd.tsx │ │ ├── publish.task.ts │ │ ├── publisher.ts │ │ └── write-npm-ignore.ts ├── preview │ ├── aspect-docs │ │ └── preview │ │ │ ├── index.ts │ │ │ ├── preview.composition.tsx │ │ │ ├── preview.docs.mdx │ │ │ └── preview.mdx │ ├── cli │ │ └── webpack-events-listener │ │ │ ├── index.ts │ │ │ └── webpack-events-listener.ts │ ├── preview │ │ ├── artifact-file-middleware.ts │ │ ├── bundler │ │ │ ├── chunks.ts │ │ │ ├── create-peer-link.spec.ts │ │ │ ├── create-peers-link.ts │ │ │ ├── html-plugin.ts │ │ │ └── html-template.ts │ │ ├── bundling-strategy.ts │ │ ├── component-preview.route.ts │ │ ├── component-preview.ts │ │ ├── env-preview-template.task.ts │ │ ├── env-template.route.ts │ │ ├── esm.mjs │ │ ├── events │ │ │ ├── click-inside-an-iframe.ts │ │ │ └── index.ts │ │ ├── exceptions │ │ │ ├── bundling-strategy-not-found.ts │ │ │ ├── index.ts │ │ │ ├── preview-artifact-not-found.ts │ │ │ ├── preview-not-found.ts │ │ │ └── preview-output-file-not-found.ts │ │ ├── execution-ref.ts │ │ ├── generate-link.ts │ │ ├── generate-preview.cmd.tsx │ │ ├── gql │ │ │ └── fetch-component-aspects.tsx │ │ ├── html-utils.tsx │ │ ├── index.ts │ │ ├── mk-temp-dir.ts │ │ ├── pre-bundle-utils.ts │ │ ├── pre-bundle.task.ts │ │ ├── pre-bundle.ts │ │ ├── preview-artifact.ts │ │ ├── preview-assets.route.ts │ │ ├── preview-context.ts │ │ ├── preview-definition.ts │ │ ├── preview-env.ts │ │ ├── preview-modules.tsx │ │ ├── preview-type.ts │ │ ├── preview.aspect.ts │ │ ├── preview.composition.tsx │ │ ├── preview.docs.mdx │ │ ├── preview.graphql.ts │ │ ├── preview.main.runtime.ts │ │ ├── preview.preview.runtime.tsx │ │ ├── preview.route.ts │ │ ├── preview.service.tsx │ │ ├── preview.start-plugin.tsx │ │ ├── preview.task.ts │ │ ├── preview.ts │ │ ├── rendering-context.ts │ │ ├── serve-preview.cmd.tsx │ │ ├── size-event.ts │ │ ├── strategies │ │ │ ├── component-strategy.ts │ │ │ ├── env-strategy.ts │ │ │ ├── generate-component-link.ts │ │ │ ├── index.ts │ │ │ └── strategies-names.ts │ │ ├── types │ │ │ └── preview-module.ts │ │ └── webpack │ │ │ └── webpack.config.ts │ └── ui │ │ ├── component-preview │ │ ├── compute-preview-scale.ts │ │ ├── index.ts │ │ ├── preview.module.scss │ │ ├── preview.tsx │ │ ├── sandbox-manager.tsx │ │ ├── urls.spec.ts │ │ ├── urls.ts │ │ └── use-iframe-content-height.tsx │ │ └── preview-placeholder │ │ ├── index.ts │ │ ├── preview-placeholder.module.scss │ │ └── preview-placeholder.tsx ├── react │ ├── aspect-docs │ │ └── react │ │ │ ├── index.ts │ │ │ ├── react.composition.tsx │ │ │ ├── react.docs.mdx │ │ │ └── react.mdx │ ├── bit-component-meta │ │ ├── component-meta.mock.tsx │ │ ├── component-meta.ts │ │ └── index.ts │ ├── bit-react-transformer │ │ ├── bit-react-tranformer.docs.md │ │ ├── bit-react-transformer.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ └── meta-from-pkg-json.ts │ ├── eslint-config-bit-react │ │ ├── bit-react-eslint.docs.md │ │ ├── bit-react-eslint.js │ │ └── index.js │ ├── react │ │ ├── apps │ │ │ └── web │ │ │ │ ├── compute-results.ts │ │ │ │ ├── deploy-context.ts │ │ │ │ ├── index.ts │ │ │ │ ├── react-app-options.ts │ │ │ │ ├── react-build-result.ts │ │ │ │ ├── react.app-type.ts │ │ │ │ ├── react.application.ts │ │ │ │ ├── ssr │ │ │ │ ├── app │ │ │ │ │ └── runner │ │ │ │ └── ssr-express.ts │ │ │ │ └── webpack │ │ │ │ ├── mutators.ts │ │ │ │ └── webpack.app.ssr.config.ts │ │ ├── eslint │ │ │ └── eslintrc.js │ │ ├── esm.mjs │ │ ├── highlighter-widget.tsx │ │ ├── index.ts │ │ ├── jest │ │ │ ├── index.ts │ │ │ ├── jest.cjs.config.js │ │ │ ├── jest.config.js │ │ │ └── jest.esm.config.js │ │ ├── prettier │ │ │ └── prettier.config.js │ │ ├── react.api.transformer.ts │ │ ├── react.aspect.ts │ │ ├── react.composition.tsx │ │ ├── react.docs.mdx │ │ ├── react.env.ts │ │ ├── react.graphql.ts │ │ ├── react.main.runtime.ts │ │ ├── react.preview.runtime.ts │ │ ├── react.schema.ts │ │ ├── react.templates.ts │ │ ├── react.ui.runtime.tsx │ │ ├── typescript │ │ │ ├── asset.d.ts │ │ │ ├── style.d.ts │ │ │ ├── tsconfig.build.json │ │ │ ├── tsconfig.cjs.json │ │ │ └── tsconfig.json │ │ └── webpack │ │ │ ├── html.ts │ │ │ ├── index.ts │ │ │ ├── overlay │ │ │ ├── formatWebpackMessages.js │ │ │ ├── launchEditorEndpoint.js │ │ │ ├── refreshOverlayInterop.js │ │ │ └── webpackHotDevClient.js │ │ │ ├── postcss.config.ts │ │ │ ├── webpack.config.base.prod.ts │ │ │ ├── webpack.config.base.ts │ │ │ ├── webpack.config.component.dev.ts │ │ │ ├── webpack.config.component.prod.ts │ │ │ ├── webpack.config.env.dev.ts │ │ │ └── webpack.config.env.template.ts │ └── ui │ │ ├── compositions-app │ │ ├── composition-app.docs.mdx │ │ ├── compositions-app.tsx │ │ ├── compositions.app-root.tsx │ │ ├── compositions.compositions.tsx │ │ └── index.ts │ │ ├── docs-app │ │ ├── docs-app.module.scss │ │ ├── docs-app.tsx │ │ ├── docs-theme.tsx │ │ ├── docs.app-root.tsx │ │ ├── index.tsx │ │ └── symlink-component-list.md │ │ ├── docs │ │ ├── apply-providers │ │ │ ├── apply-providers.tsx │ │ │ └── index.ts │ │ ├── compositions-carousel │ │ │ ├── compositions-carousel.module.scss │ │ │ ├── compositions-carousel.tsx │ │ │ └── index.ts │ │ ├── docs-content │ │ │ ├── docs-content.tsx │ │ │ └── index.ts │ │ └── properties-table │ │ │ ├── index.ts │ │ │ └── properties-table.tsx │ │ ├── error-fallback │ │ ├── error-fallback.module.scss │ │ ├── error-fallback.tsx │ │ └── index.ts │ │ ├── highlighter-provider │ │ ├── highlighter-provider.module.scss │ │ ├── highlighter-provider.tsx │ │ └── index.ts │ │ └── loader-fallback │ │ ├── index.ts │ │ ├── loader-fallback.compositions.tsx │ │ ├── loader-fallback.docs.mdx │ │ ├── loader-fallback.spec.tsx │ │ └── loader-fallback.tsx ├── scope │ ├── export │ │ ├── esm.mjs │ │ ├── export-cmd.ts │ │ ├── export-scope-components.ts │ │ ├── export.aspect.ts │ │ ├── export.composition.tsx │ │ ├── export.docs.mdx │ │ ├── export.main.runtime.ts │ │ ├── index.ts │ │ └── resume-export-cmd.ts │ ├── importer │ │ ├── dependents-getter.ts │ │ ├── esm.mjs │ │ ├── fetch-cmd.ts │ │ ├── import-components.ts │ │ ├── import.cmd.ts │ │ ├── importer.aspect.ts │ │ ├── importer.composition.tsx │ │ ├── importer.docs.mdx │ │ ├── importer.main.runtime.ts │ │ └── index.ts │ ├── models │ │ └── scope-model │ │ │ ├── index.ts │ │ │ └── scope.model.ts │ ├── network │ │ ├── exceptions │ │ │ ├── fs-scope-not-loaded.ts │ │ │ ├── graphql-client-error.ts │ │ │ ├── http-invalid-json-response.ts │ │ │ ├── index.ts │ │ │ ├── network-error.ts │ │ │ ├── old-client-version.ts │ │ │ ├── permission-denied.ts │ │ │ ├── protocol-not-supported.ts │ │ │ ├── remote-scope-not-found.ts │ │ │ └── unexpected-network-error.ts │ │ ├── fs │ │ │ ├── fs.ts │ │ │ └── index.ts │ │ ├── http │ │ │ ├── http.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── network-lib.ts │ │ ├── network.ts │ │ └── remote-error-handler.ts │ ├── objects │ │ ├── fixtures │ │ │ ├── version-model-extended.json │ │ │ └── version-model-object.json │ │ ├── index.ts │ │ ├── models │ │ │ ├── dependencies-graph.ts │ │ │ ├── detach-heads.ts │ │ │ ├── export-metadata.ts │ │ │ ├── index.ts │ │ │ ├── lane-history.ts │ │ │ ├── lane.ts │ │ │ ├── model-component.spec.ts │ │ │ ├── model-component.ts │ │ │ ├── scopeMeta.ts │ │ │ ├── source.ts │ │ │ ├── symlink.ts │ │ │ ├── version-history.ts │ │ │ ├── version.spec.ts │ │ │ └── version.ts │ │ ├── objects.aspect.ts │ │ ├── objects.main.runtime.ts │ │ └── objects │ │ │ ├── bit-object-list.ts │ │ │ ├── index.ts │ │ │ ├── object-list-to-graph.ts │ │ │ ├── object-list.ts │ │ │ ├── object.ts │ │ │ ├── objects-readable-generator.ts │ │ │ ├── raw-object.ts │ │ │ ├── ref.ts │ │ │ ├── repository.ts │ │ │ ├── scope-index.spec.ts │ │ │ └── scope-index.ts │ ├── remote-actions │ │ ├── action.ts │ │ ├── export-persist.ts │ │ ├── export-validate.ts │ │ ├── fetch-missing-deps.ts │ │ ├── fetch-missing-history.ts │ │ ├── index.ts │ │ ├── post-sign.ts │ │ └── remove-pending-dir.ts │ ├── scope │ │ ├── clear-cache-action.ts │ │ ├── debug-commands │ │ │ ├── cat-component-cmd.ts │ │ │ ├── cat-component.ts │ │ │ ├── cat-lane-cmd.ts │ │ │ ├── cat-lane.ts │ │ │ ├── cat-object-cmd.ts │ │ │ ├── cat-object.ts │ │ │ ├── cat-scope-cmd.ts │ │ │ └── cat-scope.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ │ ├── component-not-found.ts │ │ │ ├── index.ts │ │ │ └── no-id-match-pattern.ts │ │ ├── get-scope-options.ts │ │ ├── index.ts │ │ ├── routes │ │ │ ├── action.route.ts │ │ │ ├── delete.route.ts │ │ │ ├── fetch.route.ts │ │ │ ├── index.ts │ │ │ └── put.route.ts │ │ ├── run-action │ │ │ ├── run-action.cmd.ts │ │ │ └── run-action.ts │ │ ├── scope-aspects-loader.ts │ │ ├── scope-cmd.ts │ │ ├── scope-component-loader.ts │ │ ├── scope.aspect.ts │ │ ├── scope.composition.tsx │ │ ├── scope.docs.mdx │ │ ├── scope.graphql.ts │ │ ├── scope.main.runtime.ts │ │ ├── scope.ui-root.ts │ │ ├── scope.ui.drawer.tsx │ │ ├── scope.ui.runtime.tsx │ │ ├── staged-config.ts │ │ ├── types.ts │ │ └── ui │ │ │ ├── menu │ │ │ ├── index.ts │ │ │ ├── menu.module.scss │ │ │ └── menu.tsx │ │ │ ├── scope-overview │ │ │ ├── index.ts │ │ │ ├── scope-overview.module.scss │ │ │ └── scope-overview.tsx │ │ │ ├── scope.module.scss │ │ │ └── scope.tsx │ └── version-history │ │ ├── build-version-history-action.ts │ │ ├── cat-version-history-cmd.ts │ │ ├── cat-version-history.ts │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── version-history-cmd.ts │ │ ├── version-history.aspect.ts │ │ └── version-history.main.runtime.ts ├── semantics │ └── schema │ │ ├── esm.mjs │ │ ├── exceptions │ │ ├── index.ts │ │ └── parser-not-found.ts │ │ ├── index.ts │ │ ├── mock │ │ ├── button-old-schema.json │ │ ├── button-schemas.json │ │ └── button │ │ │ ├── button.composition.tsx │ │ │ ├── button.tsx │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── parser.ts │ │ ├── schema-env.ts │ │ ├── schema-extractor.ts │ │ ├── schema.aspect.ts │ │ ├── schema.cmd.ts │ │ ├── schema.composition.tsx │ │ ├── schema.docs.mdx │ │ ├── schema.graphql.ts │ │ ├── schema.main.runtime.ts │ │ ├── schema.service.ts │ │ ├── schema.spec.ts │ │ └── schema.task.ts ├── toolbox │ ├── array │ │ └── duplications-finder │ │ │ ├── find-duplications.spec.ts │ │ │ └── find-duplications.ts │ ├── fs │ │ ├── extension-getter │ │ │ ├── get-ext.ts │ │ │ └── index.ts │ │ ├── hard-link-directory │ │ │ ├── hard-link-directory.docs.mdx │ │ │ ├── hard-link-directory.spec.ts │ │ │ ├── hard-link-directory.ts │ │ │ └── index.ts │ │ ├── is-dir-empty │ │ │ ├── index.ts │ │ │ └── is-dir-empty.ts │ │ ├── last-modified │ │ │ ├── index.ts │ │ │ └── last-modified.ts │ │ ├── link-or-symlink │ │ │ ├── create-link-or-symlink.ts │ │ │ └── index.ts │ │ └── remove-empty-dir │ │ │ ├── index.ts │ │ │ └── remove-empty-dir.ts │ ├── modules │ │ └── module-resolver │ │ │ ├── index.ts │ │ │ └── module-resolver.ts │ ├── network │ │ └── get-port │ │ │ ├── get-port.spec.ts │ │ │ ├── get-port.ts │ │ │ ├── index.ts │ │ │ └── locked.ts │ ├── path │ │ ├── is-path-inside │ │ │ ├── index.ts │ │ │ └── is-path-inside.ts │ │ ├── match-patterns │ │ │ ├── index.ts │ │ │ ├── match-pattern.docs.md │ │ │ ├── match-pattern.spec.ts │ │ │ └── match-patterns.ts │ │ ├── path │ │ │ ├── index.ts │ │ │ └── path.ts │ │ └── to-windows-compatible-path │ │ │ ├── index.ts │ │ │ └── to-windows-compatible-path.ts │ ├── promise │ │ └── map-pool │ │ │ ├── index.ts │ │ │ ├── promise-with-concurrent.spec.ts │ │ │ └── promise-with-concurrent.ts │ ├── string │ │ ├── capitalize │ │ │ ├── capitalize.docs.md │ │ │ ├── capitalize.spec.ts │ │ │ ├── capitalize.ts │ │ │ └── index.ts │ │ ├── ellipsis │ │ │ ├── ellipsis.docs.md │ │ │ ├── ellipsis.spec.ts │ │ │ ├── ellipsis.ts │ │ │ └── index.ts │ │ ├── eol │ │ │ ├── eol.ts │ │ │ └── index.ts │ │ ├── get-initials │ │ │ ├── get-initials.docs.md │ │ │ ├── get-initials.spec.ts │ │ │ ├── get-initials.ts │ │ │ └── index.ts │ │ ├── random │ │ │ ├── generate-random-string.ts │ │ │ └── index.ts │ │ └── strip-trailing-char │ │ │ ├── index.ts │ │ │ └── strip-trailing-char.ts │ ├── tables │ │ └── cli-table │ │ │ ├── cli-table.ts │ │ │ └── index.ts │ ├── time │ │ └── timer │ │ │ ├── exceptions │ │ │ ├── index.ts │ │ │ ├── timer-already-running.ts │ │ │ └── timer-not-started.ts │ │ │ ├── index.ts │ │ │ ├── response.ts │ │ │ ├── timer.spec.ts │ │ │ └── timer.ts │ ├── types │ │ └── serializable │ │ │ ├── index.ts │ │ │ └── serializable.ts │ └── url │ │ ├── add-avatar-query-params │ │ ├── add-avatar-query-params.docs.md │ │ ├── add-avatar-query-params.ts │ │ └── index.ts │ │ └── query-string │ │ ├── index.ts │ │ ├── query-string.spec.ts │ │ └── query-string.ts ├── typescript │ ├── aspect-docs │ │ └── typescript │ │ │ ├── index.ts │ │ │ ├── typescript.composition.tsx │ │ │ ├── typescript.docs.mdx │ │ │ └── typescript.mdx │ ├── modules │ │ └── ts-config-mutator │ │ │ ├── index.ts │ │ │ ├── ts-config-mutator.docs.md │ │ │ ├── ts-config-mutator.spec.ts │ │ │ └── ts-config-mutator.ts │ ├── ts-server │ │ ├── format-diagnostics.ts │ │ ├── index.ts │ │ ├── modules-resolver.ts │ │ ├── process-based-tsserver.ts │ │ ├── ts-server-client.ts │ │ ├── tsp-command-types.ts │ │ └── utils.ts │ └── typescript │ │ ├── cmds │ │ └── check-types.cmd.ts │ │ ├── compiler-options.ts │ │ ├── esm.mjs │ │ ├── exceptions │ │ ├── index.ts │ │ └── transformer-not-found.ts │ │ ├── export-identifier.ts │ │ ├── extractor-options.ts │ │ ├── identifier-list.ts │ │ ├── identifier.ts │ │ ├── index.ts │ │ ├── remove-types-task.ts │ │ ├── schema-extractor-context.ts │ │ ├── schema-transformer.plugin.ts │ │ ├── schema-transformer.ts │ │ ├── sourceFileTransformers │ │ ├── class.ts │ │ ├── empty-line-encoder.ts │ │ ├── export.ts │ │ ├── expression-statement.ts │ │ ├── function.ts │ │ ├── import.ts │ │ ├── index.ts │ │ ├── interface.ts │ │ ├── replaceName.ts │ │ ├── transform.ts │ │ ├── type-reference.ts │ │ ├── typeAlias.ts │ │ └── variable.ts │ │ ├── transform-source-file.spec.ts │ │ ├── transformers │ │ ├── array-literal-expression.ts │ │ ├── array-type.ts │ │ ├── binding-element.ts │ │ ├── class-declaration.ts │ │ ├── conditional-type.ts │ │ ├── constructor.ts │ │ ├── decorator.ts │ │ ├── enum-declaration.ts │ │ ├── export-assignment.ts │ │ ├── export-declaration.ts │ │ ├── expression-statement.ts │ │ ├── function-like.ts │ │ ├── get-accessor.ts │ │ ├── import-declaration.ts │ │ ├── index-signature.ts │ │ ├── index.ts │ │ ├── indexed-access-type.ts │ │ ├── interface-declaration.ts │ │ ├── intersection-type.ts │ │ ├── keyword-type.ts │ │ ├── literal-type.ts │ │ ├── literal-value.ts │ │ ├── module-declaration.ts │ │ ├── named-tuple.ts │ │ ├── object-literal-expression.ts │ │ ├── parameter.ts │ │ ├── parenthesized-type.ts │ │ ├── property-assignment.ts │ │ ├── property-declaration.ts │ │ ├── set-accessor.ts │ │ ├── source-file-transformer.ts │ │ ├── template-literal-type-span.ts │ │ ├── template-literal-type.ts │ │ ├── this-type.ts │ │ ├── tuple-type.ts │ │ ├── type-alias.ts │ │ ├── type-literal.ts │ │ ├── type-operator.ts │ │ ├── type-predicate.ts │ │ ├── type-query.ts │ │ ├── type-reference.ts │ │ ├── union-type.ts │ │ ├── utils │ │ │ ├── jsdoc-to-doc-schema.ts │ │ │ └── parse-type-from-quick-info.ts │ │ ├── variable-declaration.ts │ │ └── variable-statement.ts │ │ ├── tsconfig.default.json │ │ ├── typescript.aspect.ts │ │ ├── typescript.composition.tsx │ │ ├── typescript.docs.mdx │ │ ├── typescript.extractor.ts │ │ ├── typescript.main.runtime.ts │ │ ├── typescript.parser.spec.ts │ │ └── typescript.parser.ts ├── ui-foundation │ ├── harmony-ui-app │ │ └── harmony-ui-app │ │ │ ├── esm.mjs │ │ │ ├── harmony-app-options.ts │ │ │ ├── harmony-ui-app.aspect.ts │ │ │ ├── harmony-ui-app.compositions.tsx │ │ │ ├── harmony-ui-app.docs.mdx │ │ │ ├── harmony-ui-app.main.runtime.ts │ │ │ └── index.ts │ ├── less │ │ ├── index.ts │ │ ├── less.aspect.ts │ │ ├── less.compiler.ts │ │ └── less.main.runtime.ts │ ├── notifications │ │ ├── aspect │ │ │ ├── esm.mjs │ │ │ ├── index.ts │ │ │ ├── notification-reducer.tsx │ │ │ ├── notification.ui.runtime.tsx │ │ │ └── notifications.aspect.ts │ │ ├── notifications.composition.tsx │ │ └── notifications.docs.mdx │ ├── panels │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── panel-ui.aspect.ts │ │ ├── panel-ui.main.runtime.ts │ │ └── ui │ │ │ ├── tabs.module.scss │ │ │ └── tabs.tsx │ ├── react-router │ │ └── react-router │ │ │ ├── LocationHooks.tsx │ │ │ ├── esm.mjs │ │ │ ├── index.ts │ │ │ ├── react-router.aspect.ts │ │ │ ├── react-router.composition.tsx │ │ │ ├── react-router.docs.mdx │ │ │ ├── react-router.ui.runtime.tsx │ │ │ ├── route-context.tsx │ │ │ └── routing-method.tsx │ ├── sass │ │ ├── index.ts │ │ ├── sass.aspect.ts │ │ ├── sass.compiler.ts │ │ └── sass.main.runtime.ts │ ├── sidebar │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── sidebar.aspect.ts │ │ ├── sidebar.composition.tsx │ │ ├── sidebar.docs.mdx │ │ ├── sidebar.ui.runtime.tsx │ │ └── ui │ │ │ ├── index.ts │ │ │ └── side-bar │ │ │ ├── index.ts │ │ │ ├── side-bar.module.scss │ │ │ └── side-bar.tsx │ ├── ui │ │ ├── bundle-ui.task.ts │ │ ├── esm.mjs │ │ ├── events │ │ │ ├── index.ts │ │ │ └── ui-server-started-event.ts │ │ ├── exceptions │ │ │ ├── index.ts │ │ │ ├── unknown-build-error.ts │ │ │ └── unknown-ui.ts │ │ ├── index.ts │ │ ├── ssr-middleware │ │ │ ├── index.ts │ │ │ └── ssr-middleware.ts │ │ ├── start-plugin.ts │ │ ├── start.cmd.tsx │ │ ├── ui-build.cmd.tsx │ │ ├── ui-root.tsx │ │ ├── ui-root.ui.ts │ │ ├── ui-server.ts │ │ ├── ui.aspect.ts │ │ ├── ui.composition.tsx │ │ ├── ui.docs.mdx │ │ ├── ui.main.runtime.ts │ │ ├── ui.ui.runtime.tsx │ │ ├── ui │ │ │ ├── client-context.module.scss │ │ │ └── client-context.tsx │ │ └── webpack │ │ │ ├── html.ts │ │ │ ├── postcss.config.ts │ │ │ ├── webpack.base.config.ts │ │ │ ├── webpack.browser.config.ts │ │ │ ├── webpack.dev.config.ts │ │ │ └── webpack.ssr.config.ts │ └── user-agent │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── user-agent.aspect.ts │ │ ├── user-agent.composition.tsx │ │ ├── user-agent.docs.mdx │ │ └── user-agent.ui.runtime.tsx ├── vue │ └── vue │ │ ├── esm.mjs │ │ ├── index.ts │ │ ├── vue.aspect.ts │ │ ├── vue.main.runtime.ts │ │ ├── vue.renderer.module.scss │ │ ├── vue.renderer.tsx │ │ ├── vue.schema.ts │ │ └── vue.ui.runtime.ts ├── webpack │ ├── config-mutator │ │ ├── config-mutator.docs.md │ │ ├── config-mutator.spec.ts │ │ ├── config-mutator.ts │ │ └── index.ts │ ├── module-federation │ │ ├── index.ts │ │ ├── module-federation.aspect.ts │ │ └── module-federation.main.runtime.ts │ ├── modules │ │ ├── generate-expose-loaders │ │ │ ├── generate-expose-loaders.docs.mdx │ │ │ ├── generate-expose-loaders.ts │ │ │ └── index.ts │ │ ├── generate-externals │ │ │ ├── generate-externals.docs.mdx │ │ │ ├── generate-externals.ts │ │ │ └── index.ts │ │ └── generate-style-loaders │ │ │ ├── generate-style-loaders.docs.md │ │ │ ├── generate-style-loaders.ts │ │ │ └── index.ts │ ├── plugins │ │ └── inject-head-webpack-plugin │ │ │ ├── index.ts │ │ │ ├── inject-head-webpack-plugin.docs.mdx │ │ │ └── inject-head-webpack-plugin.ts │ ├── style-regexps │ │ ├── index.ts │ │ ├── style-regexps.docs.md │ │ └── style-regexps.ts │ └── webpack │ │ ├── config │ │ ├── html.ts │ │ ├── webpack-fallbacks-aliases.ts │ │ ├── webpack-fallbacks-provide-plugin-config.ts │ │ ├── webpack-fallbacks.ts │ │ ├── webpack.config.ts │ │ └── webpack.dev.config.ts │ │ ├── esm.mjs │ │ ├── events │ │ ├── index.ts │ │ ├── webpack-compilation-done-event.ts │ │ └── webpack-compilation-started-event.ts │ │ ├── index.ts │ │ ├── plugins │ │ └── webpack-bit-reporter-plugin.ts │ │ ├── run-transformer.ts │ │ ├── transformers │ │ ├── get-exposed-rules.ts │ │ ├── get-externals.ts │ │ ├── index.ts │ │ ├── inject-body.ts │ │ ├── inject-head.ts │ │ ├── resolve-peer.ts │ │ └── transformers.ts │ │ ├── webpack.aspect.ts │ │ ├── webpack.bundler.ts │ │ ├── webpack.composition.tsx │ │ ├── webpack.dev-server.ts │ │ ├── webpack.docs.mdx │ │ └── webpack.main.runtime.ts └── workspace │ ├── aspect-docs │ └── variants │ │ ├── index.ts │ │ ├── variants.composition.tsx │ │ ├── variants.docs.mdx │ │ └── variants.mdx │ ├── clear-cache │ ├── clear-cache-cmd.ts │ ├── clear-cache.aspect.ts │ ├── clear-cache.composition.tsx │ ├── clear-cache.docs.mdx │ ├── clear-cache.main.runtime.ts │ ├── clear-cache.ts │ ├── esm.mjs │ └── index.ts │ ├── config-merger │ ├── aggregated-deps.ts │ ├── component-config-merger.ts │ ├── config-merge-result.ts │ ├── config-merger.aspect.ts │ ├── config-merger.main.runtime.ts │ ├── esm.mjs │ └── index.ts │ ├── eject │ ├── components-ejector.ts │ ├── eject-cmd.ts │ ├── eject-template.ts │ ├── eject.aspect.ts │ ├── eject.composition.tsx │ ├── eject.docs.mdx │ ├── eject.main.runtime.ts │ ├── esm.mjs │ └── index.ts │ ├── install │ ├── esm.mjs │ ├── exceptions │ │ ├── dependency-type-not-supported-in-policy.ts │ │ └── index.ts │ ├── index.ts │ ├── install.aspect.ts │ ├── install.cmd.tsx │ ├── install.main.runtime.ts │ ├── link │ │ ├── component-list-links.ts │ │ ├── core-aspects-links.ts │ │ ├── get-package-name-from-target.ts │ │ ├── index.ts │ │ ├── link-row.ts │ │ ├── link-to-dir.ts │ │ ├── link.cmd.ts │ │ ├── nested-deps-in-nm-links.ts │ │ └── rewire-row.ts │ ├── pick-outdated-pkgs.spec.ts │ ├── pick-outdated-pkgs.ts │ ├── uninstall.cmd.tsx │ └── update.cmd.tsx │ ├── modules │ ├── fs-cache │ │ ├── fs-cache.ts │ │ └── index.ts │ ├── match-pattern │ │ ├── exceptions │ │ │ ├── dir-pattern-with-star.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── match-pattern.spec.ts │ │ └── match-pattern.ts │ ├── node-modules-linker │ │ ├── codemod-components.ts │ │ ├── index.ts │ │ ├── node-modules-linker.ts │ │ └── package-json-transformer.ts │ └── workspace-locator │ │ ├── index.ts │ │ └── workspace-locator.ts │ ├── scripts │ ├── exceptions │ │ ├── index.ts │ │ └── script-not-found.ts │ ├── index.ts │ ├── script-definition.ts │ ├── script.cmd.ts │ ├── scripts.aspect.ts │ ├── scripts.main.runtime.ts │ ├── scripts.service.ts │ └── scripts.ts │ ├── testing │ └── mock-workspace │ │ ├── index.ts │ │ └── mock-workspace.ts │ ├── variants │ ├── constants.ts │ ├── esm.mjs │ ├── index.ts │ ├── variants.aspect.ts │ ├── variants.composition.tsx │ ├── variants.docs.mdx │ └── variants.main.runtime.ts │ ├── watcher │ ├── check-types.ts │ ├── esm.mjs │ ├── fsevents-error.ts │ ├── index.ts │ ├── output-formatter.ts │ ├── watch-queue.ts │ ├── watch.cmd.ts │ ├── watcher-daemon.ts │ ├── watcher.aspect.ts │ ├── watcher.main.runtime.ts │ └── watcher.ts │ ├── workspace-config-files │ ├── config-writer-entry.ts │ ├── config-writer-list.ts │ ├── dedup-paths.spec.ts │ ├── dedup-paths.ts │ ├── esm.mjs │ ├── exceptions │ │ └── write-failed.ts │ ├── index.ts │ ├── outputs │ │ ├── format-clean-output.ts │ │ ├── format-list-output.ts │ │ ├── format-write-output.ts │ │ ├── index.ts │ │ ├── verbose-format-write-output.ts │ │ └── write-outputs-texts.ts │ ├── workspace-config-env-type.ts │ ├── workspace-config-files.aspect.ts │ ├── workspace-config-files.docs.mdx │ ├── workspace-config-files.main.runtime.ts │ ├── workspace-config-files.service.tsx │ ├── writers │ │ ├── extending-config-files.ts │ │ ├── index.ts │ │ └── real-config-files.ts │ └── ws-config.cmd.ts │ └── workspace │ ├── aspects-merger.ts │ ├── auto-tag.ts │ ├── bit-map.ts │ ├── build-graph-from-fs.ts │ ├── build-graph-ids-from-fs.ts │ ├── capsule.cmd.ts │ ├── commands │ └── local-only-cmd.ts │ ├── component-config-file │ ├── component-config-file.ts │ ├── exceptions │ │ ├── already-exists.ts │ │ └── index.ts │ └── index.ts │ ├── component-tree.widget.tsx │ ├── constants.ts │ ├── eject-conf.cmd.ts │ ├── envs-subcommands │ ├── envs-replace.cmd.ts │ ├── envs-set.cmd.ts │ ├── envs-unset.cmd.ts │ └── envs-update.cmd.ts │ ├── esm.mjs │ ├── events │ ├── index.ts │ ├── on-component-add-event.ts │ ├── on-component-change-event.ts │ └── on-component-removed-event.ts │ ├── exceptions │ ├── incorrect-env-aspect.ts │ ├── merge-config-conflict.ts │ └── outside-workspace.ts │ ├── filter.ts │ ├── index.ts │ ├── merge-conflict-file.ts │ ├── on-component-events.ts │ ├── pattern.cmd.ts │ ├── scope-subcommands │ └── scope-set.cmd.ts │ ├── types.ts │ ├── ui │ ├── index.ts │ └── workspace │ │ ├── default-component.ts │ │ ├── index.ts │ │ ├── theme-from-url.tsx │ │ ├── use-workspace.ts │ │ ├── workspace-context.tsx │ │ ├── workspace-menu.tsx │ │ ├── workspace-model.ts │ │ ├── workspace-overview │ │ ├── index.ts │ │ ├── link-plugin.ts │ │ ├── workspace-overview.module.scss │ │ └── workspace-overview.tsx │ │ ├── workspace-provider.tsx │ │ ├── workspace.module.scss │ │ └── workspace.tsx │ ├── unuse.cmd.ts │ ├── use.cmd.ts │ ├── workspace-aspects-loader.ts │ ├── workspace-component │ ├── comp-files.ts │ ├── component-status-loader.ts │ ├── component-status.ts │ ├── index.ts │ ├── workspace-component-loader.ts │ └── workspace-component.ts │ ├── workspace.aspect.ts │ ├── workspace.composition.tsx │ ├── workspace.docs.mdx │ ├── workspace.graphql.ts │ ├── workspace.main.runtime.ts │ ├── workspace.ts │ ├── workspace.ui-root.ts │ ├── workspace.ui.drawer.tsx │ └── workspace.ui.runtime.tsx ├── scripts ├── assert-master.js ├── bit-status.sh ├── bootstrap-env-ubuntu.sh ├── build-chocolatey.ps1 ├── build-deb.sh ├── build-dist.ps1 ├── build-tar.sh ├── build-windows-installer.bat ├── check-env-cache-sync.sh ├── circular-deps-check │ ├── ANALYSIS.md │ ├── README.md │ ├── baseline-cycles-full.json │ ├── baseline-cycles.json │ ├── check-circular-deps.js │ ├── ci-check.sh │ ├── create-baseline.js │ ├── diff-cycles.js │ ├── monitor-workspace-cycle.js │ └── workspace-cycle-baseline.json ├── cleanup-node-modules.js ├── copyArtifacts.ps1 ├── deploy-windows.ps1 ├── doc-generator.js ├── docker-teambit-bit │ ├── Dockerfile-bit │ ├── Dockerfile-bit-alpine │ ├── Dockerfile-bit-non-root │ ├── Dockerfile-bit-server │ ├── README-zh.md │ └── README.md ├── establish-dev-link-windows.js ├── establish-dev-link.js ├── extensions-to-aspects.js ├── find-duplicate-packages.js ├── find-unused-packages.js ├── generate-merge-commit-message.js ├── install.js ├── linux │ ├── build-linux.sh │ ├── centos │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── bit.repo │ │ └── build-linux-rpm.sh │ ├── debian │ │ ├── Dockerfile │ │ ├── README.md │ │ └── build-linux-deb.sh │ ├── postInstall.sh │ └── postRemove.sh ├── macos │ └── brew │ │ └── bit.rb ├── node-installer.ps1 ├── node-installer.sh ├── package-utils.js ├── remove-chalk-char.js ├── remove-unused-ts-expect-errors.js ├── replace-staged-components.sh ├── scripts-constants.js ├── set-installation-method.js ├── slack-deploy-notification.js ├── soft-tag-scope-teambit.js ├── update-bit-gcp-index.js ├── validate-import-named-aspects.sh ├── validate-no-ramda.sh ├── validate-pkg-exist-in-pkg-json.js └── windows │ ├── Bit.wxs │ ├── BitSetup.wixproj │ ├── bit-banner.bmp │ ├── bit-dialog.bmp │ ├── bit.cmd │ ├── bit.ico │ └── license.rtf ├── tsconfig.json ├── workspace-jsonc-schema.json └── workspace.jsonc /.bitmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.bitmap -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/config.yml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.circleci/config.yml.bak -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4-docs-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.github/ISSUE_TEMPLATE/4-docs-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run lint-staged 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/.snyk -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/README.md -------------------------------------------------------------------------------- /babel-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/babel-register.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/bin/bit.js -------------------------------------------------------------------------------- /components/component-issues/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/component-issues/esm.mjs -------------------------------------------------------------------------------- /components/component-issues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/component-issues/index.ts -------------------------------------------------------------------------------- /components/config-store/config-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/config-store/config-cmd.ts -------------------------------------------------------------------------------- /components/config-store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/config-store/index.ts -------------------------------------------------------------------------------- /components/crypto/sha1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/crypto/sha1/index.ts -------------------------------------------------------------------------------- /components/crypto/sha1/sha1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/crypto/sha1/sha1.ts -------------------------------------------------------------------------------- /components/entities/semantic-schema/type.ts: -------------------------------------------------------------------------------- 1 | export type TypeRef = {}; 2 | -------------------------------------------------------------------------------- /components/hooks/use-lanes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/hooks/use-lanes/index.ts -------------------------------------------------------------------------------- /components/legacy/analytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/analytics/index.ts -------------------------------------------------------------------------------- /components/legacy/bit-map/bit-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/bit-map/bit-map.ts -------------------------------------------------------------------------------- /components/legacy/bit-map/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/bit-map/esm.mjs -------------------------------------------------------------------------------- /components/legacy/bit-map/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/bit-map/index.ts -------------------------------------------------------------------------------- /components/legacy/cli/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/cli/error/index.ts -------------------------------------------------------------------------------- /components/legacy/consumer/consumer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/consumer/consumer.ts -------------------------------------------------------------------------------- /components/legacy/consumer/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/consumer/esm.mjs -------------------------------------------------------------------------------- /components/legacy/consumer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/consumer/index.ts -------------------------------------------------------------------------------- /components/legacy/e2e-helper/excluded-fixtures/components/custom-dev-files/comp.custom-docs-suffix.mdx: -------------------------------------------------------------------------------- 1 | My docs file 2 | -------------------------------------------------------------------------------- /components/legacy/e2e-helper/excluded-fixtures/workspace-with-tsconfig-issue/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /components/legacy/e2e-helper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/e2e-helper/index.ts -------------------------------------------------------------------------------- /components/legacy/loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/loader/index.ts -------------------------------------------------------------------------------- /components/legacy/loader/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/loader/loader.ts -------------------------------------------------------------------------------- /components/legacy/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/logger/index.ts -------------------------------------------------------------------------------- /components/legacy/logger/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/logger/logger.ts -------------------------------------------------------------------------------- /components/legacy/logger/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/logger/profiler.ts -------------------------------------------------------------------------------- /components/legacy/scope-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/scope-api/index.ts -------------------------------------------------------------------------------- /components/legacy/scope-api/lib/put.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/scope-api/lib/put.ts -------------------------------------------------------------------------------- /components/legacy/scope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/scope/README.md -------------------------------------------------------------------------------- /components/legacy/scope/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/scope/esm.mjs -------------------------------------------------------------------------------- /components/legacy/scope/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/scope/index.ts -------------------------------------------------------------------------------- /components/legacy/scope/lanes/lanes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/scope/lanes/lanes.ts -------------------------------------------------------------------------------- /components/legacy/scope/repositories/hooks.ts: -------------------------------------------------------------------------------- 1 | export default class Hooks { 2 | getPath() {} 3 | } 4 | -------------------------------------------------------------------------------- /components/legacy/scope/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/scope/repository.ts -------------------------------------------------------------------------------- /components/legacy/scope/scope-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/scope/scope-json.ts -------------------------------------------------------------------------------- /components/legacy/scope/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/scope/scope.ts -------------------------------------------------------------------------------- /components/legacy/utils/checksum/fixtures/dshaw.txt: -------------------------------------------------------------------------------- 1 | dshaw 2 | -------------------------------------------------------------------------------- /components/legacy/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/utils/index.ts -------------------------------------------------------------------------------- /components/legacy/utils/is-bit-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/utils/is-bit-url.ts -------------------------------------------------------------------------------- /components/legacy/utils/is-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/legacy/utils/is-dir.ts -------------------------------------------------------------------------------- /components/scope/remotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/scope/remotes/index.ts -------------------------------------------------------------------------------- /components/scope/remotes/remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/scope/remotes/remote.ts -------------------------------------------------------------------------------- /components/scope/remotes/remotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/scope/remotes/remotes.ts -------------------------------------------------------------------------------- /components/ui/avatar/avatar.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/avatar/avatar.docs.mdx -------------------------------------------------------------------------------- /components/ui/avatar/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/avatar/avatar.tsx -------------------------------------------------------------------------------- /components/ui/avatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/avatar/index.ts -------------------------------------------------------------------------------- /components/ui/avatar/org-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/avatar/org-avatar.tsx -------------------------------------------------------------------------------- /components/ui/avatar/user-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/avatar/user-avatar.tsx -------------------------------------------------------------------------------- /components/ui/code-compare/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/code-compare/index.ts -------------------------------------------------------------------------------- /components/ui/code-editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/code-editor/index.ts -------------------------------------------------------------------------------- /components/ui/code-tab-page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/code-tab-page/index.ts -------------------------------------------------------------------------------- /components/ui/code-view/code-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/code-view/code-view.tsx -------------------------------------------------------------------------------- /components/ui/code-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/code-view/index.ts -------------------------------------------------------------------------------- /components/ui/lane-overview/empty-lane-overview.module.scss: -------------------------------------------------------------------------------- 1 | .text { 2 | margin-bottom: 30px; 3 | } 4 | -------------------------------------------------------------------------------- /components/ui/lane-overview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/lane-overview/index.ts -------------------------------------------------------------------------------- /components/ui/rendering/html/html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/rendering/html/html.tsx -------------------------------------------------------------------------------- /components/ui/rendering/html/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/rendering/html/index.ts -------------------------------------------------------------------------------- /components/ui/side-bar/component-tree/component-tree.module.scss: -------------------------------------------------------------------------------- 1 | .componentTree { 2 | padding: 0 8px; 3 | } 4 | -------------------------------------------------------------------------------- /components/ui/side-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/side-bar/index.ts -------------------------------------------------------------------------------- /components/ui/test-compare/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/test-compare/index.ts -------------------------------------------------------------------------------- /components/ui/test-page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/test-page/index.ts -------------------------------------------------------------------------------- /components/ui/test-page/tests-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/test-page/tests-page.tsx -------------------------------------------------------------------------------- /components/ui/time-ago/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/time-ago/index.ts -------------------------------------------------------------------------------- /components/ui/time-ago/time-ago.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/time-ago/time-ago.tsx -------------------------------------------------------------------------------- /components/ui/tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/tooltip/index.ts -------------------------------------------------------------------------------- /components/ui/tooltip/mount-point.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/tooltip/mount-point.tsx -------------------------------------------------------------------------------- /components/ui/tooltip/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/tooltip/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/version-block/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/components/ui/version-block/index.ts -------------------------------------------------------------------------------- /docs/node-modules-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/docs/node-modules-optimization.md -------------------------------------------------------------------------------- /e2e-skipped/app.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e-skipped/app.e2e.ts -------------------------------------------------------------------------------- /e2e-skipped/clear-cache.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e-skipped/clear-cache.e2e.ts -------------------------------------------------------------------------------- /e2e-skipped/install-angular.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e-skipped/install-angular.e2e.ts -------------------------------------------------------------------------------- /e2e-skipped/mix-harmony-legacy.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e-skipped/mix-harmony-legacy.e2e.ts -------------------------------------------------------------------------------- /e2e/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/.eslintrc.js -------------------------------------------------------------------------------- /e2e/commands/add.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/add.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/config.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/config.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/diff.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/diff.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/export.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/export.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/import-all.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/import-all.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/import.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/import.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/init.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/init.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/list.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/list.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/move.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/move.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/pattern.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/pattern.e2e.ts -------------------------------------------------------------------------------- /e2e/commands/remote.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/remote.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/remove.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/remove.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/reset.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/reset.e2e.ts -------------------------------------------------------------------------------- /e2e/commands/status.e2e.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/status.e2e.2.ts -------------------------------------------------------------------------------- /e2e/commands/tag.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/tag.e2e.1.ts -------------------------------------------------------------------------------- /e2e/commands/watch.e2e.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/commands/watch.e2e.2.ts -------------------------------------------------------------------------------- /e2e/doctor/doctor-git-exec.e2e.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/doctor/doctor-git-exec.e2e.3.ts -------------------------------------------------------------------------------- /e2e/doctor/doctor-infra.e2e.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/doctor/doctor-infra.e2e.3.ts -------------------------------------------------------------------------------- /e2e/fixtures/big-text-file-fixture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/fixtures/big-text-file-fixture.txt -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/add_many_test_files/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/add_many_test_files/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/add_many_test_files/a.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/add_many_test_files/c.js: -------------------------------------------------------------------------------- 1 | console.log('hello'); -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/add_many_test_files/d.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/add_many_test_files/d.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/add_many_test_files/e.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/add_many_test_files/f.js: -------------------------------------------------------------------------------- 1 | require('./e.js'); -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/add_many_test_files/inner_folder/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/g.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/h.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/h.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/i.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/add-many/i.spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/fixtures/components/app/app.tsx -------------------------------------------------------------------------------- /e2e/fixtures/components/app/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app'; 2 | -------------------------------------------------------------------------------- /e2e/fixtures/components/dependency-status/dependency-status-test-files/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/dependency-status/dependency-status-test-files/c.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/help/help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/fixtures/components/help/help.tsx -------------------------------------------------------------------------------- /e2e/fixtures/components/help/index.ts: -------------------------------------------------------------------------------- 1 | export * from './help'; 2 | -------------------------------------------------------------------------------- /e2e/fixtures/components/hero-button/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './HeroButton'; 2 | -------------------------------------------------------------------------------- /e2e/fixtures/components/hero-withrelativepaths/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Hero'; 2 | -------------------------------------------------------------------------------- /e2e/fixtures/components/hero/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/fixtures/components/hero/Hero.js -------------------------------------------------------------------------------- /e2e/fixtures/components/hero/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Hero'; 2 | -------------------------------------------------------------------------------- /e2e/fixtures/components/import-relative-path/import-by-2-files/a1.js: -------------------------------------------------------------------------------- 1 | import {b1, b3} from './b'; -------------------------------------------------------------------------------- /e2e/fixtures/components/import-relative-path/import-by-2-files/a2.js: -------------------------------------------------------------------------------- 1 | import {b2, b3} from './b'; 2 | -------------------------------------------------------------------------------- /e2e/fixtures/components/import-relative-path/import-by-2-files/a3.js: -------------------------------------------------------------------------------- 1 | require('./b'); -------------------------------------------------------------------------------- /e2e/fixtures/components/is-string/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './is-string'; 2 | -------------------------------------------------------------------------------- /e2e/fixtures/components/logo/index.ts: -------------------------------------------------------------------------------- 1 | export * from './logo'; 2 | -------------------------------------------------------------------------------- /e2e/fixtures/components/logo/logo.e2e.spec.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/logo/logo.simulation.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/logo/logo.spec.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/components/logo/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/fixtures/components/logo/logo.tsx -------------------------------------------------------------------------------- /e2e/fixtures/components/pad-left/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './pad-left'; 2 | -------------------------------------------------------------------------------- /e2e/fixtures/png_fixture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/fixtures/png_fixture.png -------------------------------------------------------------------------------- /e2e/flows/big-file.e2e.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/flows/big-file.e2e.2.ts -------------------------------------------------------------------------------- /e2e/flows/bitmap-deleted.e2e-2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/flows/bitmap-deleted.e2e-2.ts -------------------------------------------------------------------------------- /e2e/flows/cyclic-dependencies.e2e.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/flows/cyclic-dependencies.e2e.2.ts -------------------------------------------------------------------------------- /e2e/flows/delete-files.e2e.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/flows/delete-files.e2e.2.ts -------------------------------------------------------------------------------- /e2e/flows/id-with-wildcard.e2e.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/flows/id-with-wildcard.e2e.2.ts -------------------------------------------------------------------------------- /e2e/flows/import-package-json.e2e.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/flows/import-package-json.e2e.3.ts -------------------------------------------------------------------------------- /e2e/functionalities/merge.e2e.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/functionalities/merge.e2e.3.ts -------------------------------------------------------------------------------- /e2e/harmony/add-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/add-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/artifacts.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/artifacts.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/aspect.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/aspect.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/babel.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/babel.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/binary-files.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/binary-files.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/bit-ignore.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/bit-ignore.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/build-cmd.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/build-cmd.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/checkout-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/checkout-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/ci-commands.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/ci-commands.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/compile.e2e.4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/compile.e2e.4.ts -------------------------------------------------------------------------------- /e2e/harmony/component-config.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/component-config.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/corrupted-objects.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/corrupted-objects.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/create.e2e.4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/create.e2e.4.ts -------------------------------------------------------------------------------- /e2e/harmony/custom-aspects.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/custom-aspects.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/custom-env.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/custom-env.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/deduplication.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/deduplication.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/delete.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/delete.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/dependencies-cmd.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/dependencies-cmd.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/dependencies.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/dependencies.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/dependency-resolver.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/dependency-resolver.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/deprecate.e2e.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/deprecate.e2e.1.ts -------------------------------------------------------------------------------- /e2e/harmony/deps-graph.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/deps-graph.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/deps-in-capsules.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/deps-in-capsules.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/deps-write.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/deps-write.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/dev-files.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/dev-files.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/eject-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/eject-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/env.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/env.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/export-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/export-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/extensions-config.e2e.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/extensions-config.e2e.3.ts -------------------------------------------------------------------------------- /e2e/harmony/fork.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/fork.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/graph-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/graph-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/harmony-workspace.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/harmony-workspace.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/http.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/http.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/import-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/import-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/init-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/init-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/install-and-compile.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/install-and-compile.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/install.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/install.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/jest-fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/jest-fixtures.ts -------------------------------------------------------------------------------- /e2e/harmony/jest.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/jest.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/import-lanes.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/import-lanes.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/lane-diff.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/lane-diff.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/lane-eject.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/lane-eject.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/lane-export.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/lane-export.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/lane-forking.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/lane-forking.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/lane-import.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/lane-import.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/lane-merge.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/lane-merge.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/lane-snapping.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/lane-snapping.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/remove-lanes.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/remove-lanes.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/rename-lane.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/rename-lane.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/lanes/switch-lanes.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/lanes/switch-lanes.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/link.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/link.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/load-bit.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/load-bit.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/load-extensions.e2e.4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/load-extensions.e2e.4.ts -------------------------------------------------------------------------------- /e2e/harmony/log.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/log.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/merge-config.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/merge-config.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/mocha-tester.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/mocha-tester.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/multiple-compilers.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/multiple-compilers.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/multiple-envs.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/multiple-envs.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/multiple-testers.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/multiple-testers.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/new.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/new.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/no-files.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/no-files.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/node-linker.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/node-linker.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/pkg-manager-config.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/pkg-manager-config.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/pkg-manager-errors.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/pkg-manager-errors.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/pkg.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/pkg.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/preview.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/preview.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/publish.e2e.4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/publish.e2e.4.ts -------------------------------------------------------------------------------- /e2e/harmony/readme-env.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/readme-env.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/recover.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/recover.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/refactor.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/refactor.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/relative-paths.e2e.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/relative-paths.e2e.3.ts -------------------------------------------------------------------------------- /e2e/harmony/rename.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/rename.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/require-resolve.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/require-resolve.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/revert.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/revert.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/root-components.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/root-components.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/scope-cmd.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/scope-cmd.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/scripts.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/scripts.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/show-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/show-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/snap.e2e.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/snap.e2e.2.ts -------------------------------------------------------------------------------- /e2e/harmony/stash.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/stash.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/status-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/status-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/tag-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/tag-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/test-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/test-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/typescript-tsserver.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/typescript-tsserver.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/uninstall-cmd.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/uninstall-cmd.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/untag-harmony.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/untag-harmony.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/update-cmd.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/update-cmd.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/use.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/use.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/validate.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/validate.e2e.ts -------------------------------------------------------------------------------- /e2e/harmony/workspace-config.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/harmony/workspace-config.e2e.ts -------------------------------------------------------------------------------- /e2e/http-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/http-helper.ts -------------------------------------------------------------------------------- /e2e/performance/files-snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/performance/files-snapshot.txt -------------------------------------------------------------------------------- /e2e/performance/filesystem-read.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/performance/filesystem-read.e2e.ts -------------------------------------------------------------------------------- /e2e/typescript/typescript.e2e.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/typescript/typescript.e2e.3.ts -------------------------------------------------------------------------------- /e2e/watch-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/e2e/watch-runner.ts -------------------------------------------------------------------------------- /fixtures/component-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/fixtures/component-model.json -------------------------------------------------------------------------------- /fixtures/invalid-tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/fixtures/invalid-tester.js -------------------------------------------------------------------------------- /fixtures/path-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/fixtures/path-map.json -------------------------------------------------------------------------------- /mocha-multi-reporters-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/mocha-multi-reporters-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /publish-legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/publish-legacy.md -------------------------------------------------------------------------------- /scopes/cloud/cloud/cloud.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/cloud/cloud.aspect.ts -------------------------------------------------------------------------------- /scopes/cloud/cloud/cloud.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/cloud/cloud.graphql.ts -------------------------------------------------------------------------------- /scopes/cloud/cloud/cloud.ui.styles.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scopes/cloud/cloud/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/cloud/esm.mjs -------------------------------------------------------------------------------- /scopes/cloud/cloud/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/cloud/index.ts -------------------------------------------------------------------------------- /scopes/cloud/cloud/login.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/cloud/login.cmd.ts -------------------------------------------------------------------------------- /scopes/cloud/cloud/logout.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/cloud/logout.cmd.ts -------------------------------------------------------------------------------- /scopes/cloud/cloud/npmrc.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/cloud/npmrc.cmd.ts -------------------------------------------------------------------------------- /scopes/cloud/cloud/whoami.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/cloud/whoami.cmd.ts -------------------------------------------------------------------------------- /scopes/cloud/hooks/use-logout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/hooks/use-logout/index.ts -------------------------------------------------------------------------------- /scopes/cloud/ui/current-user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/ui/current-user/index.ts -------------------------------------------------------------------------------- /scopes/cloud/ui/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/ui/login/index.ts -------------------------------------------------------------------------------- /scopes/cloud/ui/login/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/ui/login/login.tsx -------------------------------------------------------------------------------- /scopes/cloud/ui/user-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/ui/user-bar/index.ts -------------------------------------------------------------------------------- /scopes/cloud/ui/user-bar/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/ui/user-bar/item.ts -------------------------------------------------------------------------------- /scopes/cloud/ui/user-bar/section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/ui/user-bar/section.ts -------------------------------------------------------------------------------- /scopes/cloud/ui/user-bar/user-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/cloud/ui/user-bar/user-bar.tsx -------------------------------------------------------------------------------- /scopes/community/community/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/community/community/esm.mjs -------------------------------------------------------------------------------- /scopes/community/community/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/community/community/index.ts -------------------------------------------------------------------------------- /scopes/compilation/babel/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/compilation/babel/esm.mjs -------------------------------------------------------------------------------- /scopes/compilation/babel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/compilation/babel/index.ts -------------------------------------------------------------------------------- /scopes/compilation/bundler/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/compilation/bundler/bundle.ts -------------------------------------------------------------------------------- /scopes/compilation/bundler/bundler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/compilation/bundler/bundler.ts -------------------------------------------------------------------------------- /scopes/compilation/bundler/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/compilation/bundler/esm.mjs -------------------------------------------------------------------------------- /scopes/compilation/bundler/events/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components-server-started-event'; 2 | -------------------------------------------------------------------------------- /scopes/compilation/bundler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/compilation/bundler/index.ts -------------------------------------------------------------------------------- /scopes/compilation/compiler/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/compilation/compiler/esm.mjs -------------------------------------------------------------------------------- /scopes/compilation/compiler/events/index.ts: -------------------------------------------------------------------------------- 1 | export * from './compiler-error'; 2 | -------------------------------------------------------------------------------- /scopes/compilation/compiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/compilation/compiler/index.ts -------------------------------------------------------------------------------- /scopes/compilation/compiler/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/compilation/compiler/types.ts -------------------------------------------------------------------------------- /scopes/compilation/modules/babel-compiler/index.ts: -------------------------------------------------------------------------------- 1 | export * from './babel-compiler'; 2 | -------------------------------------------------------------------------------- /scopes/component/changelog/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/changelog/esm.mjs -------------------------------------------------------------------------------- /scopes/component/changelog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/changelog/index.ts -------------------------------------------------------------------------------- /scopes/component/checkout/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/checkout/esm.mjs -------------------------------------------------------------------------------- /scopes/component/checkout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/checkout/index.ts -------------------------------------------------------------------------------- /scopes/component/code/code.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/code/code.aspect.ts -------------------------------------------------------------------------------- /scopes/component/code/code.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/code/code.docs.mdx -------------------------------------------------------------------------------- /scopes/component/code/code.section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/code/code.section.tsx -------------------------------------------------------------------------------- /scopes/component/code/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/code/esm.mjs -------------------------------------------------------------------------------- /scopes/component/code/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/code/index.ts -------------------------------------------------------------------------------- /scopes/component/component-log/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component-log/esm.mjs -------------------------------------------------------------------------------- /scopes/component/component-url/constants.ts: -------------------------------------------------------------------------------- 1 | export const baseUrl = 'https://bit.cloud'; 2 | -------------------------------------------------------------------------------- /scopes/component/component-url/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component-url/esm.mjs -------------------------------------------------------------------------------- /scopes/component/component/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component/config.ts -------------------------------------------------------------------------------- /scopes/component/component/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component/esm.mjs -------------------------------------------------------------------------------- /scopes/component/component/exceptions/nothing-to-snap.ts: -------------------------------------------------------------------------------- 1 | export default class NothingToSnap extends Error {} 2 | -------------------------------------------------------------------------------- /scopes/component/component/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component/hash.ts -------------------------------------------------------------------------------- /scopes/component/component/history-graph.ts: -------------------------------------------------------------------------------- 1 | export default class HistoryGraph {} 2 | -------------------------------------------------------------------------------- /scopes/component/component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component/index.ts -------------------------------------------------------------------------------- /scopes/component/component/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component/state.ts -------------------------------------------------------------------------------- /scopes/component/component/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component/store.ts -------------------------------------------------------------------------------- /scopes/component/component/tag-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component/tag-map.ts -------------------------------------------------------------------------------- /scopes/component/component/tag/index.ts: -------------------------------------------------------------------------------- 1 | export { Tag } from './tag'; 2 | -------------------------------------------------------------------------------- /scopes/component/component/tag/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component/tag/tag.ts -------------------------------------------------------------------------------- /scopes/component/component/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/component/ui/index.ts -------------------------------------------------------------------------------- /scopes/component/component/ui/top-bar-nav/index.ts: -------------------------------------------------------------------------------- 1 | export * from './top-bar-nav'; 2 | -------------------------------------------------------------------------------- /scopes/component/deprecation/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/deprecation/esm.mjs -------------------------------------------------------------------------------- /scopes/component/deprecation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/deprecation/index.ts -------------------------------------------------------------------------------- /scopes/component/dev-files/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/dev-files/esm.mjs -------------------------------------------------------------------------------- /scopes/component/dev-files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/dev-files/index.ts -------------------------------------------------------------------------------- /scopes/component/forking/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/forking/esm.mjs -------------------------------------------------------------------------------- /scopes/component/forking/fork.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/forking/fork.cmd.ts -------------------------------------------------------------------------------- /scopes/component/forking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/forking/index.ts -------------------------------------------------------------------------------- /scopes/component/graph/edge-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/graph/edge-type.ts -------------------------------------------------------------------------------- /scopes/component/graph/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/graph/esm.mjs -------------------------------------------------------------------------------- /scopes/component/graph/graph-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/graph/graph-cmd.ts -------------------------------------------------------------------------------- /scopes/component/graph/graph.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/graph/graph.aspect.ts -------------------------------------------------------------------------------- /scopes/component/graph/graph.docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/graph/graph.docs.md -------------------------------------------------------------------------------- /scopes/component/graph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/graph/index.ts -------------------------------------------------------------------------------- /scopes/component/graph/model/graph-filters/graph-filters.ts: -------------------------------------------------------------------------------- 1 | export type GraphFilter = 'runtimeOnly' | undefined; 2 | -------------------------------------------------------------------------------- /scopes/component/isolator/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/isolator/esm.mjs -------------------------------------------------------------------------------- /scopes/component/isolator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/isolator/index.ts -------------------------------------------------------------------------------- /scopes/component/isolator/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/isolator/network.ts -------------------------------------------------------------------------------- /scopes/component/issues/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/issues/esm.mjs -------------------------------------------------------------------------------- /scopes/component/issues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/issues/index.ts -------------------------------------------------------------------------------- /scopes/component/issues/issues-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/issues/issues-cmd.ts -------------------------------------------------------------------------------- /scopes/component/lister/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/lister/esm.mjs -------------------------------------------------------------------------------- /scopes/component/lister/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/lister/index.ts -------------------------------------------------------------------------------- /scopes/component/lister/list.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/lister/list.cmd.ts -------------------------------------------------------------------------------- /scopes/component/merging/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/merging/esm.mjs -------------------------------------------------------------------------------- /scopes/component/merging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/merging/index.ts -------------------------------------------------------------------------------- /scopes/component/merging/merge-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/merging/merge-cmd.ts -------------------------------------------------------------------------------- /scopes/component/mover/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/mover/esm.mjs -------------------------------------------------------------------------------- /scopes/component/mover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/mover/index.ts -------------------------------------------------------------------------------- /scopes/component/mover/move-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/mover/move-cmd.ts -------------------------------------------------------------------------------- /scopes/component/mover/mover.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/mover/mover.aspect.ts -------------------------------------------------------------------------------- /scopes/component/refactoring/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/refactoring/esm.mjs -------------------------------------------------------------------------------- /scopes/component/refactoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/refactoring/index.ts -------------------------------------------------------------------------------- /scopes/component/remove/delete-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/remove/delete-cmd.ts -------------------------------------------------------------------------------- /scopes/component/remove/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/remove/esm.mjs -------------------------------------------------------------------------------- /scopes/component/remove/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/remove/index.ts -------------------------------------------------------------------------------- /scopes/component/remove/recover-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/remove/recover-cmd.ts -------------------------------------------------------------------------------- /scopes/component/remove/remove-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/remove/remove-cmd.ts -------------------------------------------------------------------------------- /scopes/component/renaming/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/renaming/esm.mjs -------------------------------------------------------------------------------- /scopes/component/renaming/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/renaming/index.ts -------------------------------------------------------------------------------- /scopes/component/snapping/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/snapping/esm.mjs -------------------------------------------------------------------------------- /scopes/component/snapping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/snapping/index.ts -------------------------------------------------------------------------------- /scopes/component/snapping/reset-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/snapping/reset-cmd.ts -------------------------------------------------------------------------------- /scopes/component/snapping/snap-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/snapping/snap-cmd.ts -------------------------------------------------------------------------------- /scopes/component/snapping/tag-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/snapping/tag-cmd.ts -------------------------------------------------------------------------------- /scopes/component/sources/artifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/sources/artifact.ts -------------------------------------------------------------------------------- /scopes/component/sources/dist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/sources/dist.ts -------------------------------------------------------------------------------- /scopes/component/sources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/sources/index.ts -------------------------------------------------------------------------------- /scopes/component/sources/json-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/sources/json-file.ts -------------------------------------------------------------------------------- /scopes/component/sources/json-vinyl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/sources/json-vinyl.ts -------------------------------------------------------------------------------- /scopes/component/sources/license.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/sources/license.ts -------------------------------------------------------------------------------- /scopes/component/sources/symlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/sources/symlink.ts -------------------------------------------------------------------------------- /scopes/component/stash/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/stash/esm.mjs -------------------------------------------------------------------------------- /scopes/component/stash/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/stash/index.ts -------------------------------------------------------------------------------- /scopes/component/stash/stash-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/stash/stash-data.ts -------------------------------------------------------------------------------- /scopes/component/stash/stash-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/stash/stash-files.ts -------------------------------------------------------------------------------- /scopes/component/stash/stash.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/stash/stash.aspect.ts -------------------------------------------------------------------------------- /scopes/component/stash/stash.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/stash/stash.cmd.ts -------------------------------------------------------------------------------- /scopes/component/status/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/status/esm.mjs -------------------------------------------------------------------------------- /scopes/component/status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/status/index.ts -------------------------------------------------------------------------------- /scopes/component/status/status-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/status/status-cmd.ts -------------------------------------------------------------------------------- /scopes/component/tracker/add-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/tracker/add-cmd.ts -------------------------------------------------------------------------------- /scopes/component/tracker/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/tracker/esm.mjs -------------------------------------------------------------------------------- /scopes/component/tracker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/component/tracker/index.ts -------------------------------------------------------------------------------- /scopes/compositions/compositions/ui/compositions-panel-node/index.ts: -------------------------------------------------------------------------------- 1 | export * from './compositions-panel-node'; 2 | -------------------------------------------------------------------------------- /scopes/defender/eslint/eslint.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/eslint/eslint.docs.mdx -------------------------------------------------------------------------------- /scopes/defender/eslint/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/eslint/esm.mjs -------------------------------------------------------------------------------- /scopes/defender/eslint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/eslint/index.ts -------------------------------------------------------------------------------- /scopes/defender/formatter/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/formatter/esm.mjs -------------------------------------------------------------------------------- /scopes/defender/formatter/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/formatter/formatter.ts -------------------------------------------------------------------------------- /scopes/defender/formatter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/formatter/index.ts -------------------------------------------------------------------------------- /scopes/defender/jest/calc-root-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/jest/calc-root-dir.ts -------------------------------------------------------------------------------- /scopes/defender/jest/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/jest/error.ts -------------------------------------------------------------------------------- /scopes/defender/jest/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/jest/esm.mjs -------------------------------------------------------------------------------- /scopes/defender/jest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/jest/index.ts -------------------------------------------------------------------------------- /scopes/defender/jest/jest.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/jest/jest.aspect.ts -------------------------------------------------------------------------------- /scopes/defender/jest/jest.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/jest/jest.docs.mdx -------------------------------------------------------------------------------- /scopes/defender/jest/jest.tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/jest/jest.tester.ts -------------------------------------------------------------------------------- /scopes/defender/jest/jest.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/jest/jest.worker.ts -------------------------------------------------------------------------------- /scopes/defender/jest/watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/jest/watch.ts -------------------------------------------------------------------------------- /scopes/defender/linter/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/linter/esm.mjs -------------------------------------------------------------------------------- /scopes/defender/linter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/linter/index.ts -------------------------------------------------------------------------------- /scopes/defender/linter/lint.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/linter/lint.cmd.ts -------------------------------------------------------------------------------- /scopes/defender/linter/lint.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/linter/lint.task.ts -------------------------------------------------------------------------------- /scopes/defender/linter/linter.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/linter/linter.docs.mdx -------------------------------------------------------------------------------- /scopes/defender/linter/linter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/linter/linter.ts -------------------------------------------------------------------------------- /scopes/defender/mocha/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/mocha/esm.mjs -------------------------------------------------------------------------------- /scopes/defender/mocha/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/mocha/index.ts -------------------------------------------------------------------------------- /scopes/defender/mocha/mocha.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/mocha/mocha.aspect.ts -------------------------------------------------------------------------------- /scopes/defender/mocha/mocha.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/mocha/mocha.docs.mdx -------------------------------------------------------------------------------- /scopes/defender/multi-tester/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/multi-tester/esm.mjs -------------------------------------------------------------------------------- /scopes/defender/multi-tester/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/multi-tester/index.ts -------------------------------------------------------------------------------- /scopes/defender/prettier/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/prettier/esm.mjs -------------------------------------------------------------------------------- /scopes/defender/prettier/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/prettier/index.ts -------------------------------------------------------------------------------- /scopes/defender/tester/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/tester/esm.mjs -------------------------------------------------------------------------------- /scopes/defender/tester/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/tester/index.ts -------------------------------------------------------------------------------- /scopes/defender/tester/test.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/tester/test.cmd.ts -------------------------------------------------------------------------------- /scopes/defender/tester/tester-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/tester/tester-env.ts -------------------------------------------------------------------------------- /scopes/defender/tester/tester.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/tester/tester.docs.mdx -------------------------------------------------------------------------------- /scopes/defender/tester/tester.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/tester/tester.task.ts -------------------------------------------------------------------------------- /scopes/defender/tester/tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/tester/tester.ts -------------------------------------------------------------------------------- /scopes/defender/tester/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/tester/utils/index.ts -------------------------------------------------------------------------------- /scopes/defender/validator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/defender/validator/index.ts -------------------------------------------------------------------------------- /scopes/dependencies/aspect-docs/pnpm/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Pnpm } from './pnpm.mdx'; 2 | -------------------------------------------------------------------------------- /scopes/dependencies/aspect-docs/yarn/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Yarn } from './yarn.mdx'; 2 | -------------------------------------------------------------------------------- /scopes/dependencies/dependencies/files-dependency-builder/fixtures/filing-cabinet/foo2.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scopes/dependencies/dependencies/files-dependency-builder/fixtures/filing-cabinet/root1/mod1.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /scopes/dependencies/dependencies/files-dependency-builder/fixtures/filing-cabinet/root2/mod2.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /scopes/dependencies/dependencies/files-dependency-builder/fixtures/precinct/foo.foo: -------------------------------------------------------------------------------- 1 | There is no keywords matched. 2 | -------------------------------------------------------------------------------- /scopes/dependencies/dependencies/files-dependency-builder/fixtures/unsupported-file.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scopes/dependencies/fs/linked-dependencies/index.ts: -------------------------------------------------------------------------------- 1 | export { createLinks } from './linked-dependencies'; 2 | -------------------------------------------------------------------------------- /scopes/dependencies/pnpm/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/dependencies/pnpm/esm.mjs -------------------------------------------------------------------------------- /scopes/dependencies/pnpm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/dependencies/pnpm/index.ts -------------------------------------------------------------------------------- /scopes/dependencies/pnpm/lynx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/dependencies/pnpm/lynx.ts -------------------------------------------------------------------------------- /scopes/dependencies/pnpm/pnpm.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/dependencies/pnpm/pnpm.docs.mdx -------------------------------------------------------------------------------- /scopes/dependencies/yarn/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/dependencies/yarn/esm.mjs -------------------------------------------------------------------------------- /scopes/dependencies/yarn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/dependencies/yarn/index.ts -------------------------------------------------------------------------------- /scopes/dependencies/yarn/yarn.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/dependencies/yarn/yarn.docs.mdx -------------------------------------------------------------------------------- /scopes/docs/docs/default-doc-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/default-doc-reader.ts -------------------------------------------------------------------------------- /scopes/docs/docs/doc-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/doc-module.ts -------------------------------------------------------------------------------- /scopes/docs/docs/doc-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/doc-reader.ts -------------------------------------------------------------------------------- /scopes/docs/docs/docs-store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs-store.tsx -------------------------------------------------------------------------------- /scopes/docs/docs/docs.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs.aspect.ts -------------------------------------------------------------------------------- /scopes/docs/docs/docs.composition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs.composition.tsx -------------------------------------------------------------------------------- /scopes/docs/docs/docs.data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs.data.tsx -------------------------------------------------------------------------------- /scopes/docs/docs/docs.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs.docs.mdx -------------------------------------------------------------------------------- /scopes/docs/docs/docs.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs.graphql.ts -------------------------------------------------------------------------------- /scopes/docs/docs/docs.main.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs.main.runtime.ts -------------------------------------------------------------------------------- /scopes/docs/docs/docs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs.service.ts -------------------------------------------------------------------------------- /scopes/docs/docs/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs.ts -------------------------------------------------------------------------------- /scopes/docs/docs/docs.ui.runtime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/docs.ui.runtime.tsx -------------------------------------------------------------------------------- /scopes/docs/docs/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/esm.mjs -------------------------------------------------------------------------------- /scopes/docs/docs/events/index.ts: -------------------------------------------------------------------------------- 1 | export * from './click-inside-an-iframe'; 2 | -------------------------------------------------------------------------------- /scopes/docs/docs/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/exceptions/index.ts -------------------------------------------------------------------------------- /scopes/docs/docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/index.ts -------------------------------------------------------------------------------- /scopes/docs/docs/overview.section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/overview.section.tsx -------------------------------------------------------------------------------- /scopes/docs/docs/overview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/overview/index.ts -------------------------------------------------------------------------------- /scopes/docs/docs/overview/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/docs/docs/overview/overview.tsx -------------------------------------------------------------------------------- /scopes/envs/aspect-docs/envs/envs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/aspect-docs/envs/envs.mdx -------------------------------------------------------------------------------- /scopes/envs/aspect-docs/envs/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Envs } from './envs.mdx'; 2 | -------------------------------------------------------------------------------- /scopes/envs/env/env.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/env/env.aspect.ts -------------------------------------------------------------------------------- /scopes/envs/env/env.composition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/env/env.composition.tsx -------------------------------------------------------------------------------- /scopes/envs/env/env.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/env/env.docs.mdx -------------------------------------------------------------------------------- /scopes/envs/env/env.env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/env/env.env.ts -------------------------------------------------------------------------------- /scopes/envs/env/env.main.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/env/env.main.runtime.ts -------------------------------------------------------------------------------- /scopes/envs/env/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/env/esm.mjs -------------------------------------------------------------------------------- /scopes/envs/env/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/env/index.ts -------------------------------------------------------------------------------- /scopes/envs/envs/context/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/context/context.ts -------------------------------------------------------------------------------- /scopes/envs/envs/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/context/index.ts -------------------------------------------------------------------------------- /scopes/envs/envs/env-definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/env-definition.ts -------------------------------------------------------------------------------- /scopes/envs/envs/env-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/env-interface.ts -------------------------------------------------------------------------------- /scopes/envs/envs/env-jsonc.detector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/env-jsonc.detector.ts -------------------------------------------------------------------------------- /scopes/envs/envs/env-service-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/env-service-list.ts -------------------------------------------------------------------------------- /scopes/envs/envs/env.composition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/env.composition.tsx -------------------------------------------------------------------------------- /scopes/envs/envs/env.fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/env.fragment.ts -------------------------------------------------------------------------------- /scopes/envs/envs/env.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/env.plugin.ts -------------------------------------------------------------------------------- /scopes/envs/envs/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/environment.ts -------------------------------------------------------------------------------- /scopes/envs/envs/envs.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/envs.cmd.ts -------------------------------------------------------------------------------- /scopes/envs/envs/envs.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/envs.docs.mdx -------------------------------------------------------------------------------- /scopes/envs/envs/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/esm.mjs -------------------------------------------------------------------------------- /scopes/envs/envs/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/exceptions/index.ts -------------------------------------------------------------------------------- /scopes/envs/envs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/index.ts -------------------------------------------------------------------------------- /scopes/envs/envs/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/runtime/index.ts -------------------------------------------------------------------------------- /scopes/envs/envs/runtime/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/runtime/runtime.ts -------------------------------------------------------------------------------- /scopes/envs/envs/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/services/index.ts -------------------------------------------------------------------------------- /scopes/envs/envs/services/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/envs/services/service.ts -------------------------------------------------------------------------------- /scopes/envs/ui/env-icon/env-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/ui/env-icon/env-icon.tsx -------------------------------------------------------------------------------- /scopes/envs/ui/env-icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/envs/ui/env-icon/index.ts -------------------------------------------------------------------------------- /scopes/explorer/command-bar/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/explorer/command-bar/esm.mjs -------------------------------------------------------------------------------- /scopes/explorer/command-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/explorer/command-bar/index.ts -------------------------------------------------------------------------------- /scopes/explorer/command-bar/model/key-event/index.ts: -------------------------------------------------------------------------------- 1 | export { KeyEvent } from './key-event'; 2 | -------------------------------------------------------------------------------- /scopes/explorer/command-bar/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/explorer/command-bar/types.tsx -------------------------------------------------------------------------------- /scopes/explorer/insights/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/explorer/insights/esm.mjs -------------------------------------------------------------------------------- /scopes/explorer/insights/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/explorer/insights/index.ts -------------------------------------------------------------------------------- /scopes/explorer/insights/insight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/explorer/insights/insight.ts -------------------------------------------------------------------------------- /scopes/generator/generator/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/generator/generator/esm.mjs -------------------------------------------------------------------------------- /scopes/generator/generator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/generator/generator/index.ts -------------------------------------------------------------------------------- /scopes/generator/generator/new.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/generator/generator/new.cmd.ts -------------------------------------------------------------------------------- /scopes/generator/generator/types.ts: -------------------------------------------------------------------------------- 1 | export interface CreateExtConfig { 2 | template: string; 3 | } 4 | -------------------------------------------------------------------------------- /scopes/git/ci/ci.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/ci/ci.aspect.ts -------------------------------------------------------------------------------- /scopes/git/ci/ci.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/ci/ci.cmd.ts -------------------------------------------------------------------------------- /scopes/git/ci/ci.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/ci/ci.docs.mdx -------------------------------------------------------------------------------- /scopes/git/ci/ci.main.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/ci/ci.main.runtime.ts -------------------------------------------------------------------------------- /scopes/git/ci/commands/merge.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/ci/commands/merge.cmd.ts -------------------------------------------------------------------------------- /scopes/git/ci/commands/pr.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/ci/commands/pr.cmd.ts -------------------------------------------------------------------------------- /scopes/git/ci/commands/verify.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/ci/commands/verify.cmd.ts -------------------------------------------------------------------------------- /scopes/git/ci/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/ci/git.ts -------------------------------------------------------------------------------- /scopes/git/ci/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/ci/index.ts -------------------------------------------------------------------------------- /scopes/git/git/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/git/esm.mjs -------------------------------------------------------------------------------- /scopes/git/git/git.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/git/git.aspect.ts -------------------------------------------------------------------------------- /scopes/git/git/git.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/git/git.cmd.ts -------------------------------------------------------------------------------- /scopes/git/git/git.main.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/git/git.main.runtime.ts -------------------------------------------------------------------------------- /scopes/git/git/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/git/index.ts -------------------------------------------------------------------------------- /scopes/git/git/merge-bitmaps.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/git/git/merge-bitmaps.cmd.ts -------------------------------------------------------------------------------- /scopes/harmony/api-server/cli.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/api-server/cli.route.ts -------------------------------------------------------------------------------- /scopes/harmony/api-server/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/api-server/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/api-server/ide.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/api-server/ide.route.ts -------------------------------------------------------------------------------- /scopes/harmony/api-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/api-server/index.ts -------------------------------------------------------------------------------- /scopes/harmony/application/app.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/application/app.cmd.ts -------------------------------------------------------------------------------- /scopes/harmony/application/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/application/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/application/exceptions/index.ts: -------------------------------------------------------------------------------- 1 | export { AppNotFound } from './app-not-found'; 2 | -------------------------------------------------------------------------------- /scopes/harmony/application/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/application/index.ts -------------------------------------------------------------------------------- /scopes/harmony/application/run.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/application/run.cmd.ts -------------------------------------------------------------------------------- /scopes/harmony/aspect-docs/node/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Node } from './node.mdx'; 2 | -------------------------------------------------------------------------------- /scopes/harmony/aspect-loader/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/aspect-loader/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/aspect-loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/aspect-loader/index.ts -------------------------------------------------------------------------------- /scopes/harmony/aspect-loader/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/aspect-loader/plugin.ts -------------------------------------------------------------------------------- /scopes/harmony/aspect/aspect.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/aspect/aspect.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/aspect/aspect.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/aspect/aspect.cmd.ts -------------------------------------------------------------------------------- /scopes/harmony/aspect/aspect.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/aspect/aspect.docs.mdx -------------------------------------------------------------------------------- /scopes/harmony/aspect/aspect.env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/aspect/aspect.env.ts -------------------------------------------------------------------------------- /scopes/harmony/aspect/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/aspect/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/aspect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/aspect/index.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/app.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/autocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/autocomplete.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/bin/bit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../dist/app'); 3 | -------------------------------------------------------------------------------- /scopes/harmony/bit/bit.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/bit.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/bit.docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/bit.docs.tsx -------------------------------------------------------------------------------- /scopes/harmony/bit/bit.main.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/bit.main.runtime.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/bit.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/bit.provider.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/bootstrap.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/bit/hook-require.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/hook-require.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/hooks/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/hooks/hook.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/hooks/index.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/index.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/load-bit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/load-bit.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/manifests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/manifests.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/run-bit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/run-bit.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/server-commander.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/server-commander.ts -------------------------------------------------------------------------------- /scopes/harmony/bit/server-forever.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/bit/server-forever.ts -------------------------------------------------------------------------------- /scopes/harmony/cache/cache.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cache/cache.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/cache/cache.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cache/cache.docs.mdx -------------------------------------------------------------------------------- /scopes/harmony/cache/cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cache/cache.spec.ts -------------------------------------------------------------------------------- /scopes/harmony/cache/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cache/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cache/index.ts -------------------------------------------------------------------------------- /scopes/harmony/cli-reference/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli-reference/index.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/cli-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/cli-parser.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/cli.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/cli.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/cli.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/cli.cmd.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/cli.composition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/cli.composition.tsx -------------------------------------------------------------------------------- /scopes/harmony/cli/cli.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/cli.docs.mdx -------------------------------------------------------------------------------- /scopes/harmony/cli/cli.main.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/cli.main.runtime.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/command-groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/command-groups.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/command-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/command-helper.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/command-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/command-runner.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/command.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/completion.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/completion.cmd.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/cli/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/exceptions/index.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/generate-doc-md.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/generate-doc-md.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/get-command-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/get-command-id.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/global-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/global-flags.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/handle-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/handle-errors.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/help.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/help.cmd.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/help.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/index.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/version.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/version.cmd.ts -------------------------------------------------------------------------------- /scopes/harmony/cli/yargs-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/cli/yargs-adapter.ts -------------------------------------------------------------------------------- /scopes/harmony/config/config.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/config/config.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/config/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/config/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/config/index.ts -------------------------------------------------------------------------------- /scopes/harmony/config/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/config/readme.md -------------------------------------------------------------------------------- /scopes/harmony/config/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/config/schema.json -------------------------------------------------------------------------------- /scopes/harmony/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/config/types.ts -------------------------------------------------------------------------------- /scopes/harmony/diagnostic/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/diagnostic/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/diagnostic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/diagnostic/index.ts -------------------------------------------------------------------------------- /scopes/harmony/doctor/diagnosis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/doctor/diagnosis.ts -------------------------------------------------------------------------------- /scopes/harmony/doctor/doctor-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/doctor/doctor-cmd.ts -------------------------------------------------------------------------------- /scopes/harmony/doctor/doctor.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/doctor/doctor.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/doctor/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/doctor/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/doctor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/doctor/index.ts -------------------------------------------------------------------------------- /scopes/harmony/express/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/express/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/express/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/express/index.ts -------------------------------------------------------------------------------- /scopes/harmony/express/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/express/types/index.ts -------------------------------------------------------------------------------- /scopes/harmony/express/types/next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/express/types/next.ts -------------------------------------------------------------------------------- /scopes/harmony/express/types/request.ts: -------------------------------------------------------------------------------- 1 | export type { Request } from 'express'; 2 | -------------------------------------------------------------------------------- /scopes/harmony/express/types/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/express/types/route.ts -------------------------------------------------------------------------------- /scopes/harmony/global-config/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/global-config/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/global-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/global-config/index.ts -------------------------------------------------------------------------------- /scopes/harmony/global-config/remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/global-config/remote.ts -------------------------------------------------------------------------------- /scopes/harmony/graphql/create-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/graphql/create-link.ts -------------------------------------------------------------------------------- /scopes/harmony/graphql/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/graphql/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/graphql/index.ts -------------------------------------------------------------------------------- /scopes/harmony/graphql/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/graphql/logging.ts -------------------------------------------------------------------------------- /scopes/harmony/graphql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/graphql/schema.ts -------------------------------------------------------------------------------- /scopes/harmony/ipc-events/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/ipc-events/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/ipc-events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/ipc-events/index.ts -------------------------------------------------------------------------------- /scopes/harmony/logger/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/logger/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/logger/index.ts -------------------------------------------------------------------------------- /scopes/harmony/logger/logger.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/logger/logger.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/logger/logger.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/logger/logger.docs.mdx -------------------------------------------------------------------------------- /scopes/harmony/logger/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/logger/logger.ts -------------------------------------------------------------------------------- /scopes/harmony/modules/get-basic-log/index.ts: -------------------------------------------------------------------------------- 1 | export { getBasicLog } from './basic-log'; 2 | -------------------------------------------------------------------------------- /scopes/harmony/node/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/node/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/node/index.ts -------------------------------------------------------------------------------- /scopes/harmony/node/jest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/node/jest/index.ts -------------------------------------------------------------------------------- /scopes/harmony/node/node.app-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/node/node.app-type.ts -------------------------------------------------------------------------------- /scopes/harmony/node/node.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/node/node.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/node/node.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/node/node.docs.mdx -------------------------------------------------------------------------------- /scopes/harmony/node/node.env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/node/node.env.ts -------------------------------------------------------------------------------- /scopes/harmony/node/node.templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/node/node.templates.ts -------------------------------------------------------------------------------- /scopes/harmony/pubsub/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/pubsub/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/pubsub/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/pubsub/index.ts -------------------------------------------------------------------------------- /scopes/harmony/pubsub/pubsub.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/pubsub/pubsub.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/pubsub/pubsub.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/pubsub/pubsub.docs.mdx -------------------------------------------------------------------------------- /scopes/harmony/pubsub/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/pubsub/types.ts -------------------------------------------------------------------------------- /scopes/harmony/ui/aspect-box/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/ui/aspect-box/index.ts -------------------------------------------------------------------------------- /scopes/harmony/worker/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/worker/esm.mjs -------------------------------------------------------------------------------- /scopes/harmony/worker/expose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/worker/expose.ts -------------------------------------------------------------------------------- /scopes/harmony/worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/worker/index.ts -------------------------------------------------------------------------------- /scopes/harmony/worker/node-endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/worker/node-endpoint.ts -------------------------------------------------------------------------------- /scopes/harmony/worker/worker.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/worker/worker.aspect.ts -------------------------------------------------------------------------------- /scopes/harmony/worker/worker.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/harmony/worker/worker.docs.mdx -------------------------------------------------------------------------------- /scopes/html/aspect-docs/html/html.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/html/aspect-docs/html/html.mdx -------------------------------------------------------------------------------- /scopes/html/aspect-docs/html/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Html } from './html.mdx'; 2 | -------------------------------------------------------------------------------- /scopes/lanes/diff/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/diff/index.ts -------------------------------------------------------------------------------- /scopes/lanes/diff/lane-diff.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/diff/lane-diff.cmd.ts -------------------------------------------------------------------------------- /scopes/lanes/lanes/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/esm.mjs -------------------------------------------------------------------------------- /scopes/lanes/lanes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/index.ts -------------------------------------------------------------------------------- /scopes/lanes/lanes/lane.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/lane.cmd.ts -------------------------------------------------------------------------------- /scopes/lanes/lanes/lanes.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/lanes.aspect.ts -------------------------------------------------------------------------------- /scopes/lanes/lanes/lanes.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/lanes.docs.mdx -------------------------------------------------------------------------------- /scopes/lanes/lanes/lanes.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/lanes.graphql.ts -------------------------------------------------------------------------------- /scopes/lanes/lanes/lanes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/lanes.spec.ts -------------------------------------------------------------------------------- /scopes/lanes/lanes/remove-lanes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/remove-lanes.ts -------------------------------------------------------------------------------- /scopes/lanes/lanes/switch-lanes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/switch-lanes.ts -------------------------------------------------------------------------------- /scopes/lanes/lanes/switch.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/lanes/switch.cmd.ts -------------------------------------------------------------------------------- /scopes/lanes/merge-lanes/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/merge-lanes/esm.mjs -------------------------------------------------------------------------------- /scopes/lanes/merge-lanes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/lanes/merge-lanes/index.ts -------------------------------------------------------------------------------- /scopes/mcp/cli-mcp-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mcp/cli-mcp-server/index.ts -------------------------------------------------------------------------------- /scopes/mcp/cli-mcp-server/rules-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mcp/cli-mcp-server/rules-cmd.ts -------------------------------------------------------------------------------- /scopes/mcp/cli-mcp-server/setup-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mcp/cli-mcp-server/setup-cmd.ts -------------------------------------------------------------------------------- /scopes/mdx/aspect-docs/mdx/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Mdx } from './mdx.mdx'; 2 | -------------------------------------------------------------------------------- /scopes/mdx/aspect-docs/mdx/mdx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/aspect-docs/mdx/mdx.mdx -------------------------------------------------------------------------------- /scopes/mdx/mdx/babel/babel.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/babel/babel.config.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/esm.mjs -------------------------------------------------------------------------------- /scopes/mdx/mdx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/index.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.aspect.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.compiler.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.composition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.composition.tsx -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.detector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.detector.spec.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.detector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.detector.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.doc-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.doc-reader.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.docs.mdx -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.env.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.main.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.main.runtime.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.templates.ts -------------------------------------------------------------------------------- /scopes/mdx/mdx/mdx.ui.runtime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/mdx/mdx.ui.runtime.tsx -------------------------------------------------------------------------------- /scopes/mdx/readme/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/readme/esm.mjs -------------------------------------------------------------------------------- /scopes/mdx/readme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/readme/index.ts -------------------------------------------------------------------------------- /scopes/mdx/readme/readme.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/readme/readme.aspect.ts -------------------------------------------------------------------------------- /scopes/mdx/readme/readme.env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/mdx/readme/readme.env.ts -------------------------------------------------------------------------------- /scopes/pipelines/builder/build-pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pipelines/builder/build-pipe.ts -------------------------------------------------------------------------------- /scopes/pipelines/builder/build-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pipelines/builder/build-task.ts -------------------------------------------------------------------------------- /scopes/pipelines/builder/build.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pipelines/builder/build.cmd.ts -------------------------------------------------------------------------------- /scopes/pipelines/builder/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pipelines/builder/esm.mjs -------------------------------------------------------------------------------- /scopes/pipelines/builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pipelines/builder/index.ts -------------------------------------------------------------------------------- /scopes/pipelines/builder/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pipelines/builder/pipeline.ts -------------------------------------------------------------------------------- /scopes/pipelines/builder/pipeline/pipeline-results.ts: -------------------------------------------------------------------------------- 1 | export class PipelineResults {} 2 | -------------------------------------------------------------------------------- /scopes/pipelines/builder/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pipelines/builder/task.ts -------------------------------------------------------------------------------- /scopes/pipelines/builder/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pipelines/builder/types.ts -------------------------------------------------------------------------------- /scopes/pkg/aspect-docs/pkg/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Pkg } from './pkg.mdx'; 2 | -------------------------------------------------------------------------------- /scopes/pkg/aspect-docs/pkg/pkg.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/aspect-docs/pkg/pkg.mdx -------------------------------------------------------------------------------- /scopes/pkg/pkg/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/esm.mjs -------------------------------------------------------------------------------- /scopes/pkg/pkg/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/exceptions/index.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/index.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/pack.cmd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pack.cmd.tsx -------------------------------------------------------------------------------- /scopes/pkg/pkg/pack.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pack.task.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/package-env-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/package-env-type.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/package-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/package-generator.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/package.fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/package.fragment.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/package.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/package.route.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/packer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/packer.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/pkg-artifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pkg-artifact.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/pkg.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pkg.aspect.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/pkg.composition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pkg.composition.tsx -------------------------------------------------------------------------------- /scopes/pkg/pkg/pkg.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pkg.docs.mdx -------------------------------------------------------------------------------- /scopes/pkg/pkg/pkg.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pkg.graphql.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/pkg.main.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pkg.main.runtime.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/pkg.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pkg.service.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/pkg.ui.runtime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/pkg.ui.runtime.tsx -------------------------------------------------------------------------------- /scopes/pkg/pkg/publish-dry-run.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/publish-dry-run.task.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/publish.cmd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/publish.cmd.tsx -------------------------------------------------------------------------------- /scopes/pkg/pkg/publish.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/publish.task.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/publisher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/publisher.ts -------------------------------------------------------------------------------- /scopes/pkg/pkg/write-npm-ignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/pkg/pkg/write-npm-ignore.ts -------------------------------------------------------------------------------- /scopes/preview/preview/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/esm.mjs -------------------------------------------------------------------------------- /scopes/preview/preview/events/index.ts: -------------------------------------------------------------------------------- 1 | export * from './click-inside-an-iframe'; 2 | -------------------------------------------------------------------------------- /scopes/preview/preview/html-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/html-utils.tsx -------------------------------------------------------------------------------- /scopes/preview/preview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/index.ts -------------------------------------------------------------------------------- /scopes/preview/preview/mk-temp-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/mk-temp-dir.ts -------------------------------------------------------------------------------- /scopes/preview/preview/pre-bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/pre-bundle.ts -------------------------------------------------------------------------------- /scopes/preview/preview/preview-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/preview-env.ts -------------------------------------------------------------------------------- /scopes/preview/preview/preview-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/preview-type.ts -------------------------------------------------------------------------------- /scopes/preview/preview/preview.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/preview.task.ts -------------------------------------------------------------------------------- /scopes/preview/preview/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/preview.ts -------------------------------------------------------------------------------- /scopes/preview/preview/size-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/preview/preview/size-event.ts -------------------------------------------------------------------------------- /scopes/react/aspect-docs/react/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ReactAspect } from './react.mdx'; 2 | -------------------------------------------------------------------------------- /scopes/react/eslint-config-bit-react/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./bit-react-eslint'); 2 | -------------------------------------------------------------------------------- /scopes/react/react/apps/web/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/apps/web/index.ts -------------------------------------------------------------------------------- /scopes/react/react/eslint/eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/eslint/eslintrc.js -------------------------------------------------------------------------------- /scopes/react/react/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/esm.mjs -------------------------------------------------------------------------------- /scopes/react/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/index.ts -------------------------------------------------------------------------------- /scopes/react/react/jest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/jest/index.ts -------------------------------------------------------------------------------- /scopes/react/react/jest/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/jest/jest.config.js -------------------------------------------------------------------------------- /scopes/react/react/react.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/react.aspect.ts -------------------------------------------------------------------------------- /scopes/react/react/react.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/react.docs.mdx -------------------------------------------------------------------------------- /scopes/react/react/react.env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/react.env.ts -------------------------------------------------------------------------------- /scopes/react/react/react.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/react.graphql.ts -------------------------------------------------------------------------------- /scopes/react/react/react.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/react.schema.ts -------------------------------------------------------------------------------- /scopes/react/react/react.templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/react.templates.ts -------------------------------------------------------------------------------- /scopes/react/react/webpack/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/webpack/html.ts -------------------------------------------------------------------------------- /scopes/react/react/webpack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/react/webpack/index.ts -------------------------------------------------------------------------------- /scopes/react/ui/docs-app/docs-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/ui/docs-app/docs-app.tsx -------------------------------------------------------------------------------- /scopes/react/ui/docs-app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/react/ui/docs-app/index.tsx -------------------------------------------------------------------------------- /scopes/scope/export/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/export/esm.mjs -------------------------------------------------------------------------------- /scopes/scope/export/export-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/export/export-cmd.ts -------------------------------------------------------------------------------- /scopes/scope/export/export.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/export/export.aspect.ts -------------------------------------------------------------------------------- /scopes/scope/export/export.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/export/export.docs.mdx -------------------------------------------------------------------------------- /scopes/scope/export/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/export/index.ts -------------------------------------------------------------------------------- /scopes/scope/importer/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/importer/esm.mjs -------------------------------------------------------------------------------- /scopes/scope/importer/fetch-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/importer/fetch-cmd.ts -------------------------------------------------------------------------------- /scopes/scope/importer/import.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/importer/import.cmd.ts -------------------------------------------------------------------------------- /scopes/scope/importer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/importer/index.ts -------------------------------------------------------------------------------- /scopes/scope/network/fs/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/network/fs/fs.ts -------------------------------------------------------------------------------- /scopes/scope/network/fs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/network/fs/index.ts -------------------------------------------------------------------------------- /scopes/scope/network/http/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/network/http/http.ts -------------------------------------------------------------------------------- /scopes/scope/network/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/network/http/index.ts -------------------------------------------------------------------------------- /scopes/scope/network/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/network/index.ts -------------------------------------------------------------------------------- /scopes/scope/network/network-lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/network/network-lib.ts -------------------------------------------------------------------------------- /scopes/scope/network/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/network/network.ts -------------------------------------------------------------------------------- /scopes/scope/objects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/index.ts -------------------------------------------------------------------------------- /scopes/scope/objects/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/models/index.ts -------------------------------------------------------------------------------- /scopes/scope/objects/models/lane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/models/lane.ts -------------------------------------------------------------------------------- /scopes/scope/objects/models/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/models/source.ts -------------------------------------------------------------------------------- /scopes/scope/objects/models/symlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/models/symlink.ts -------------------------------------------------------------------------------- /scopes/scope/objects/models/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/models/version.ts -------------------------------------------------------------------------------- /scopes/scope/objects/objects.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/objects.aspect.ts -------------------------------------------------------------------------------- /scopes/scope/objects/objects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/objects/index.ts -------------------------------------------------------------------------------- /scopes/scope/objects/objects/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/objects/object.ts -------------------------------------------------------------------------------- /scopes/scope/objects/objects/ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/objects/objects/ref.ts -------------------------------------------------------------------------------- /scopes/scope/remote-actions/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/remote-actions/action.ts -------------------------------------------------------------------------------- /scopes/scope/remote-actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/remote-actions/index.ts -------------------------------------------------------------------------------- /scopes/scope/scope/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/esm.mjs -------------------------------------------------------------------------------- /scopes/scope/scope/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/exceptions/index.ts -------------------------------------------------------------------------------- /scopes/scope/scope/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/index.ts -------------------------------------------------------------------------------- /scopes/scope/scope/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/routes/index.ts -------------------------------------------------------------------------------- /scopes/scope/scope/routes/put.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/routes/put.route.ts -------------------------------------------------------------------------------- /scopes/scope/scope/scope-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/scope-cmd.ts -------------------------------------------------------------------------------- /scopes/scope/scope/scope.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/scope.aspect.ts -------------------------------------------------------------------------------- /scopes/scope/scope/scope.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/scope.docs.mdx -------------------------------------------------------------------------------- /scopes/scope/scope/scope.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/scope.graphql.ts -------------------------------------------------------------------------------- /scopes/scope/scope/scope.ui-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/scope.ui-root.ts -------------------------------------------------------------------------------- /scopes/scope/scope/scope.ui.drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/scope.ui.drawer.tsx -------------------------------------------------------------------------------- /scopes/scope/scope/staged-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/staged-config.ts -------------------------------------------------------------------------------- /scopes/scope/scope/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/types.ts -------------------------------------------------------------------------------- /scopes/scope/scope/ui/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/ui/menu/index.ts -------------------------------------------------------------------------------- /scopes/scope/scope/ui/menu/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/ui/menu/menu.tsx -------------------------------------------------------------------------------- /scopes/scope/scope/ui/scope-overview/index.ts: -------------------------------------------------------------------------------- 1 | export * from './scope-overview'; 2 | -------------------------------------------------------------------------------- /scopes/scope/scope/ui/scope.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/scope/ui/scope.tsx -------------------------------------------------------------------------------- /scopes/scope/version-history/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/version-history/esm.mjs -------------------------------------------------------------------------------- /scopes/scope/version-history/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/scope/version-history/index.ts -------------------------------------------------------------------------------- /scopes/semantics/schema/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/semantics/schema/esm.mjs -------------------------------------------------------------------------------- /scopes/semantics/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/semantics/schema/index.ts -------------------------------------------------------------------------------- /scopes/semantics/schema/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/semantics/schema/parser.ts -------------------------------------------------------------------------------- /scopes/semantics/schema/schema-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/semantics/schema/schema-env.ts -------------------------------------------------------------------------------- /scopes/semantics/schema/schema.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/semantics/schema/schema.cmd.ts -------------------------------------------------------------------------------- /scopes/semantics/schema/schema.docs.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | description: Handles the component schema. 3 | --- 4 | -------------------------------------------------------------------------------- /scopes/semantics/schema/schema.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/semantics/schema/schema.spec.ts -------------------------------------------------------------------------------- /scopes/semantics/schema/schema.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/semantics/schema/schema.task.ts -------------------------------------------------------------------------------- /scopes/toolbox/fs/extension-getter/index.ts: -------------------------------------------------------------------------------- 1 | export { getExt } from './get-ext'; 2 | -------------------------------------------------------------------------------- /scopes/toolbox/fs/hard-link-directory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './hard-link-directory'; 2 | -------------------------------------------------------------------------------- /scopes/toolbox/fs/is-dir-empty/index.ts: -------------------------------------------------------------------------------- 1 | export { isDirEmpty } from './is-dir-empty'; 2 | -------------------------------------------------------------------------------- /scopes/toolbox/path/path/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/toolbox/path/path/index.ts -------------------------------------------------------------------------------- /scopes/toolbox/path/path/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/toolbox/path/path/path.ts -------------------------------------------------------------------------------- /scopes/toolbox/promise/map-pool/index.ts: -------------------------------------------------------------------------------- 1 | export { pMapPool } from './promise-with-concurrent'; 2 | -------------------------------------------------------------------------------- /scopes/toolbox/string/eol/eol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/toolbox/string/eol/eol.ts -------------------------------------------------------------------------------- /scopes/toolbox/string/eol/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/toolbox/string/eol/index.ts -------------------------------------------------------------------------------- /scopes/toolbox/string/random/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/toolbox/string/random/index.ts -------------------------------------------------------------------------------- /scopes/toolbox/tables/cli-table/index.ts: -------------------------------------------------------------------------------- 1 | export { CLITable } from './cli-table'; 2 | -------------------------------------------------------------------------------- /scopes/toolbox/time/timer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/toolbox/time/timer/index.ts -------------------------------------------------------------------------------- /scopes/toolbox/time/timer/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/toolbox/time/timer/response.ts -------------------------------------------------------------------------------- /scopes/toolbox/time/timer/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/toolbox/time/timer/timer.ts -------------------------------------------------------------------------------- /scopes/typescript/ts-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/typescript/ts-server/index.ts -------------------------------------------------------------------------------- /scopes/typescript/ts-server/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/typescript/ts-server/utils.ts -------------------------------------------------------------------------------- /scopes/typescript/typescript/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/typescript/typescript/esm.mjs -------------------------------------------------------------------------------- /scopes/typescript/typescript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/typescript/typescript/index.ts -------------------------------------------------------------------------------- /scopes/ui-foundation/less/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/ui-foundation/less/index.ts -------------------------------------------------------------------------------- /scopes/ui-foundation/panels/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/ui-foundation/panels/esm.mjs -------------------------------------------------------------------------------- /scopes/ui-foundation/sass/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/ui-foundation/sass/index.ts -------------------------------------------------------------------------------- /scopes/ui-foundation/ui/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/ui-foundation/ui/esm.mjs -------------------------------------------------------------------------------- /scopes/ui-foundation/ui/events/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ui-server-started-event'; 2 | -------------------------------------------------------------------------------- /scopes/ui-foundation/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/ui-foundation/ui/index.ts -------------------------------------------------------------------------------- /scopes/ui-foundation/ui/ui-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/ui-foundation/ui/ui-root.tsx -------------------------------------------------------------------------------- /scopes/ui-foundation/ui/ui.docs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/ui-foundation/ui/ui.docs.mdx -------------------------------------------------------------------------------- /scopes/ui-foundation/ui/ui/client-context.module.scss: -------------------------------------------------------------------------------- 1 | .loader { 2 | position: fixed; 3 | z-index: 20; 4 | } 5 | -------------------------------------------------------------------------------- /scopes/vue/vue/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/vue/vue/esm.mjs -------------------------------------------------------------------------------- /scopes/vue/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/vue/vue/index.ts -------------------------------------------------------------------------------- /scopes/vue/vue/vue.aspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/vue/vue/vue.aspect.ts -------------------------------------------------------------------------------- /scopes/vue/vue/vue.main.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/vue/vue/vue.main.runtime.ts -------------------------------------------------------------------------------- /scopes/vue/vue/vue.renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/vue/vue/vue.renderer.tsx -------------------------------------------------------------------------------- /scopes/vue/vue/vue.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/vue/vue/vue.schema.ts -------------------------------------------------------------------------------- /scopes/vue/vue/vue.ui.runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/vue/vue/vue.ui.runtime.ts -------------------------------------------------------------------------------- /scopes/webpack/style-regexps/index.ts: -------------------------------------------------------------------------------- 1 | export * from './style-regexps'; 2 | -------------------------------------------------------------------------------- /scopes/webpack/webpack/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/webpack/webpack/esm.mjs -------------------------------------------------------------------------------- /scopes/webpack/webpack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/webpack/webpack/index.ts -------------------------------------------------------------------------------- /scopes/workspace/eject/eject-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/eject/eject-cmd.ts -------------------------------------------------------------------------------- /scopes/workspace/eject/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/eject/esm.mjs -------------------------------------------------------------------------------- /scopes/workspace/eject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/eject/index.ts -------------------------------------------------------------------------------- /scopes/workspace/install/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/install/esm.mjs -------------------------------------------------------------------------------- /scopes/workspace/install/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/install/index.ts -------------------------------------------------------------------------------- /scopes/workspace/install/link/index.ts: -------------------------------------------------------------------------------- 1 | export { LinkCommand } from './link.cmd'; 2 | -------------------------------------------------------------------------------- /scopes/workspace/modules/fs-cache/index.ts: -------------------------------------------------------------------------------- 1 | export { FsCache } from './fs-cache'; 2 | -------------------------------------------------------------------------------- /scopes/workspace/scripts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/scripts/index.ts -------------------------------------------------------------------------------- /scopes/workspace/scripts/scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/scripts/scripts.ts -------------------------------------------------------------------------------- /scopes/workspace/variants/constants.ts: -------------------------------------------------------------------------------- 1 | export const EXT_NAME = 'teambit.workspace/variants'; 2 | -------------------------------------------------------------------------------- /scopes/workspace/variants/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/variants/esm.mjs -------------------------------------------------------------------------------- /scopes/workspace/variants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/variants/index.ts -------------------------------------------------------------------------------- /scopes/workspace/watcher/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/watcher/esm.mjs -------------------------------------------------------------------------------- /scopes/workspace/watcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/watcher/index.ts -------------------------------------------------------------------------------- /scopes/workspace/watcher/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/watcher/watcher.ts -------------------------------------------------------------------------------- /scopes/workspace/workspace/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/workspace/esm.mjs -------------------------------------------------------------------------------- /scopes/workspace/workspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/workspace/index.ts -------------------------------------------------------------------------------- /scopes/workspace/workspace/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scopes/workspace/workspace/types.ts -------------------------------------------------------------------------------- /scripts/assert-master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/assert-master.js -------------------------------------------------------------------------------- /scripts/bit-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/bit-status.sh -------------------------------------------------------------------------------- /scripts/bootstrap-env-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/bootstrap-env-ubuntu.sh -------------------------------------------------------------------------------- /scripts/build-chocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/build-chocolatey.ps1 -------------------------------------------------------------------------------- /scripts/build-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/build-deb.sh -------------------------------------------------------------------------------- /scripts/build-dist.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/build-dist.ps1 -------------------------------------------------------------------------------- /scripts/build-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/build-tar.sh -------------------------------------------------------------------------------- /scripts/build-windows-installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/build-windows-installer.bat -------------------------------------------------------------------------------- /scripts/check-env-cache-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/check-env-cache-sync.sh -------------------------------------------------------------------------------- /scripts/cleanup-node-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/cleanup-node-modules.js -------------------------------------------------------------------------------- /scripts/copyArtifacts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/copyArtifacts.ps1 -------------------------------------------------------------------------------- /scripts/deploy-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/deploy-windows.ps1 -------------------------------------------------------------------------------- /scripts/doc-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/doc-generator.js -------------------------------------------------------------------------------- /scripts/establish-dev-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/establish-dev-link.js -------------------------------------------------------------------------------- /scripts/extensions-to-aspects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/extensions-to-aspects.js -------------------------------------------------------------------------------- /scripts/find-duplicate-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/find-duplicate-packages.js -------------------------------------------------------------------------------- /scripts/find-unused-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/find-unused-packages.js -------------------------------------------------------------------------------- /scripts/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/install.js -------------------------------------------------------------------------------- /scripts/linux/build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/linux/build-linux.sh -------------------------------------------------------------------------------- /scripts/linux/centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/linux/centos/Dockerfile -------------------------------------------------------------------------------- /scripts/linux/centos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/linux/centos/README.md -------------------------------------------------------------------------------- /scripts/linux/centos/bit.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/linux/centos/bit.repo -------------------------------------------------------------------------------- /scripts/linux/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/linux/debian/Dockerfile -------------------------------------------------------------------------------- /scripts/linux/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/linux/debian/README.md -------------------------------------------------------------------------------- /scripts/linux/postInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/linux/postInstall.sh -------------------------------------------------------------------------------- /scripts/linux/postRemove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/linux/postRemove.sh -------------------------------------------------------------------------------- /scripts/macos/brew/bit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/macos/brew/bit.rb -------------------------------------------------------------------------------- /scripts/node-installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/node-installer.ps1 -------------------------------------------------------------------------------- /scripts/node-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/node-installer.sh -------------------------------------------------------------------------------- /scripts/package-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/package-utils.js -------------------------------------------------------------------------------- /scripts/remove-chalk-char.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/remove-chalk-char.js -------------------------------------------------------------------------------- /scripts/scripts-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/scripts-constants.js -------------------------------------------------------------------------------- /scripts/set-installation-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/set-installation-method.js -------------------------------------------------------------------------------- /scripts/soft-tag-scope-teambit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/soft-tag-scope-teambit.js -------------------------------------------------------------------------------- /scripts/update-bit-gcp-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/update-bit-gcp-index.js -------------------------------------------------------------------------------- /scripts/validate-no-ramda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/validate-no-ramda.sh -------------------------------------------------------------------------------- /scripts/windows/Bit.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/windows/Bit.wxs -------------------------------------------------------------------------------- /scripts/windows/BitSetup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/windows/BitSetup.wixproj -------------------------------------------------------------------------------- /scripts/windows/bit-banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/windows/bit-banner.bmp -------------------------------------------------------------------------------- /scripts/windows/bit-dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/windows/bit-dialog.bmp -------------------------------------------------------------------------------- /scripts/windows/bit.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/windows/bit.cmd -------------------------------------------------------------------------------- /scripts/windows/bit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/windows/bit.ico -------------------------------------------------------------------------------- /scripts/windows/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/scripts/windows/license.rtf -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /workspace-jsonc-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/workspace-jsonc-schema.json -------------------------------------------------------------------------------- /workspace.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teambit/bit/HEAD/workspace.jsonc --------------------------------------------------------------------------------