@teambit/dev-files 1.0.452 → 1.0.453
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<testsuites tests="3" failures="0" errors="0" skipped="0">
|
3
|
-
<testsuite name="teambit.component/dev-files@1.0.
|
3
|
+
<testsuite name="teambit.component/dev-files@1.0.453" tests="3" failures="0" errors="0" skipped="0">
|
4
4
|
<testcase classname="dist/dev-files.spec.js" name="get all dev files of the docs aspect" time="0.001"/>
|
5
5
|
<testcase classname="dist/dev-files.spec.js" name="should get undefined as there are no files for aspect id"/>
|
6
6
|
<testcase classname="dist/dev-files.spec.js" name="should list all dev files"/>
|
@@ -1 +1 @@
|
|
1
|
-
!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports["teambit.component/dev-files-preview"]=n():e["teambit.component/dev-files-preview"]=n()}(self,(()=>(()=>{"use strict";var e={41657:(e,n,t)=>{var o={id:"teambit.component/content/dev-files@1.95.9",homepage:"https://bit.dev/teambit/component/content/dev-files",exported:!0};Object.defineProperty(n,"__esModule",{value:!0}),n.default=u,s(t(41594));var r=t(5016),a=t(65682),i=["components"];function s(e){return e&&e.__esModule?e:{default:e}}function d(){return d=Object.assign||function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e},d.apply(this,arguments)}function p(e,n){if(null==e)return{};var t,o,r=l(e,n);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)t=a[o],n.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(r[t]=e[t])}return r}function l(e,n){if(null==e)return{};var t,o,r={},a=Object.keys(e);for(o=0;o<a.length;o++)t=a[o],n.indexOf(t)>=0||(r[t]=e[t]);return r}s.__bit_component=o,d.__bit_component=o,p.__bit_component=o,l.__bit_component=o;var c={},m="wrapper";function u(e){var n=e.components,t=p(e,i);return(0,r.mdx)(m,d({},c,t,{components:n,mdxType:"MDXLayout"}),(0,r.mdx)(a.MDXScopeProvider,{components:{},mdxType:"MDXScopeProvider"},(0,r.mdx)("h1",null,"Dev Files"),(0,r.mdx)("p",null,"Dev files are component files used for development and not for production. Dev files are determined as such by the Dev Files Aspect."),(0,r.mdx)("p",null,"Categorizing files as dev files is especially useful in dependency resolution, as dependencies can be inferred to be of type ",(0,r.mdx)("inlineCode",{parentName:"p"},"devDependencies")," by looking at the type of files that use them (if 'package-a' is only used by the component's dev files, then it is a dev dependency of that component)."),(0,r.mdx)("p",null,"For example, the ",(0,r.mdx)("inlineCode",{parentName:"p"},"ui/card")," component has the following file structure:"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre"},"└── card\n ├── card.composition.tsx\n ├── card.docs.mdx\n ├── card.spec.tsx\n ├── card.tsx\n └── index.ts\n")),(0,r.mdx)("p",null,"To examine it:"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre"},"$ bit show ui/card\n\n┌───────────────────┬──────────────────────────────────────────────────────────┐\n│ id │ company.scope/ui/card │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ ... │ │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ files │ card.composition.tsx │\n│ │ card.docs.mdx │\n│ │ card.spec.tsx │\n│ │ card.stories.tsx │\n│ │ card.tsx │\n│ │ index.ts │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ dev files │ card.spec.tsx (teambit.defender/tester) │\n│ │ card.composition.tsx (teambit.compositions/compositions) │\n│ │ card.docs.mdx (teambit.docs/docs) │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ extensions │ ... │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ dependencies │ ... │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ dev dependencies │ @company/scope.envs.my-react@0.0.1----- (component) │\n│ │ @types/testing-library__jest-dom@5.9.5- (package) │\n│ │ @babel/runtime@7.12.18----------------- (package) │\n│ │ @types/jest@^26.0.0-------------------- (package) │\n│ │ @types/react-dom@^17.0.5--------------- (package) │\n│ │ @types/react@^17.0.8------------------- (package) │\n│ │ @types/node@12.20.4-------------------- (package) │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ peer dependencies │ ... │\n└───────────────────┴──────────────────────────────────────────────────────────┘\n")),(0,r.mdx)("p",null,"The component's compositions, documentation and test files are categorized as 'dev files'.\nTo the side of each listed dev file, you'll find the Aspect that registered it as such (via the Dev Files Aspect)."),(0,r.mdx)("p",null,"If, for example, ",(0,r.mdx)("inlineCode",{parentName:"p"},"@testing-library/react")," will be used by the test file, ",(0,r.mdx)("inlineCode",{parentName:"p"},"card.spec.tsx")," (and no other production file), it will be inferred as a dev dependency of that component."),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-tsx"},"// card.spec.tsx\n\nimport React from 'react';\nimport { render } from '@testing-library/react';\nimport { BasicCard } from './card.composition';\n\nit('should render a Heading', () => {\n const { getByText } = render(<BasicCard />);\n const rendered = getByText('Self Host');\n expect(rendered).toBeTruthy();\n});\n")),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-bash"},"$ bit show ui/card\n\n┌───────────────────┬──────────────────────────────────────────────────────────┐\n│ dev dependencies │ @company/scope.envs.my-react@0.0.1----- (component) │\n│ │ @types/testing-library__jest-dom@5.9.5- (package) │\n│ │ @babel/runtime@7.12.18----------------- (package) │\n│ │ @types/jest@^26.0.0-------------------- (package) │\n│ │ @types/react-dom@^17.0.5--------------- (package) │\n│ │ @types/react@^17.0.8------------------- (package) │\n│ │ @types/node@12.20.4-------------------- (package) │\n│ │ @testing-library/react@12.0.0---------- (package) │\n└───────────────────┴──────────────────────────────────────────────────────────┘\n")),(0,r.mdx)("h2",null,"Configuring Dev Files"),(0,r.mdx)("p",null,"Dev files are configured by setting glob patterns that match the files' names."),(0,r.mdx)("h3",null,"Setting Glob Patterns via ",(0,r.mdx)("inlineCode",{parentName:"h3"},"workspace.jsonc")),(0,r.mdx)("p",null,"Use the ",(0,r.mdx)("inlineCode",{parentName:"p"},"devFilePatterns")," property in ",(0,r.mdx)("inlineCode",{parentName:"p"},"teambit.component/dev-files")," to manually set a glob pattern for dev files."),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-json"},'{\n "teambit.workspace/variants": {\n "{ui/**}": {\n "teambit.component/dev-files": {\n "devFilePatterns": ["**/*.story.+(js|ts|jsx|tsx)"]\n }\n }\n }\n}\n')),(0,r.mdx)("h3",null,"Setting Glob Patterns via the Dev Files API"),(0,r.mdx)("p",null,"Update your extension or create an new one to register glob patterns for dev files, using the Dev Files ",(0,r.mdx)("inlineCode",{parentName:"p"},"registerDevPattern")," API."),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre"},"bit create aspect extensions/my-dev-files\n")),(0,r.mdx)("h4",null,"registerDevPattern"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-ts"},"registerDevPattern: (pattern: string[]) : void\n")),(0,r.mdx)("p",null,"Use the ",(0,r.mdx)("inlineCode",{parentName:"p"},"registerDevPattern")," API to register an array of glob patterns."),(0,r.mdx)("p",null,"For example:"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-ts"},"import { MainRuntime } from '@teambit/cli';\nimport { DevFilesAspect, DevFilesMain } from '@teambit/dev-files';\nimport { MyDevFilesAspect } from './my-dev-files.aspect';\n\nexport class MyDevFilesMain {\n constructor(private devFiles: DevFilesMain) {}\n\n static slots = [];\n\n static dependencies = [DevFilesAspect];\n\n static runtime = MainRuntime;\n\n static async provider([devFiles]: [DevFilesMain]) {\n devFiles.registerDevPattern(['**/*.my-dev.*']);\n\n return new MyDevFilesMain(devFiles);\n }\n}\n\nMyDevFilesAspect.addRuntime(MyDevFilesMain);\n")),(0,r.mdx)("p",null,"Configure the workspace config with that aspect to apply it on all components in the workspace:"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-json"},'// workspace.jsonc\n{\n "company.scope/extensions/my-dev-files": {}\n}\n'))))}u.__bit_component=o,u.isMDXComponent=!0},85757:function(e,n,t){var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(n,"__esModule",{value:!0}),n.default=n.DevFiles=void 0;var r=t(41657);Object.defineProperty(n,"DevFiles",{enumerable:!0,get:function(){return o(r).default}}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return o(r).default}})},11012:(e,n,t)=>{var o={id:"teambit.component/dev-files@1.0.452",homepage:"https://bit.cloud/teambit/component/dev-files",exported:!0};function r(){const e=a(t(41594));return r=function(){return e},e}function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(n,"__esModule",{value:!0}),n.Logo=void 0,r.__bit_component=o,a.__bit_component=o;const i=()=>r().default.createElement("div",{style:{height:"100%",display:"flex",justifyContent:"center"}},r().default.createElement("img",{style:{width:70},src:"https://static.bit.dev/extensions-icons/dev-files.svg"}));i.__bit_component=o,n.Logo=i},5016:e=>{e.exports=MdxJsReact},41594:e=>{e.exports=React},65682:e=>{e.exports=TeambitMdxUiMdxScopeContext}},n={};function t(o){var r=n[o];if(void 0!==r)return r.exports;var a=n[o]={exports:{}};return e[o].call(a.exports,a,a.exports,t),a.exports}t.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return t.d(n,{a:n}),n},t.d=(e,n)=>{for(var o in n)t.o(n,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:n[o]})},t.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};t.r(o),t.d(o,{compositions:()=>v,compositions_metadata:()=>y,overview:()=>x});var r={};t.r(r),t.d(r,{default:()=>f});var a=t(11012),i=(t(41594),t(5016)),s=t(65682),d=t(85757),p=t.n(d),l=["components"];function c(){return c=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var o in t)({}).hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e},c.apply(null,arguments)}var m={},u="wrapper";function f(e){var n=e.components,t=function(e,n){if(null==e)return{};var t,o,r=function(e,n){if(null==e)return{};var t={};for(var o in e)if({}.hasOwnProperty.call(e,o)){if(n.includes(o))continue;t[o]=e[o]}return t}(e,n);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)t=a[o],n.includes(t)||{}.propertyIsEnumerable.call(e,t)&&(r[t]=e[t])}return r}(e,l);return(0,i.mdx)(u,c({},m,t,{components:n,mdxType:"MDXLayout"}),(0,i.mdx)(s.MDXScopeProvider,{components:{DevFiles:p()},mdxType:"MDXScopeProvider"},(0,i.mdx)(p(),{mdxType:"DevFiles"})))}f.isMDXComponent=!0;const v=[a],x=[r],y={compositions:[{displayName:"Logo",identifier:"Logo"}]};return o})()));
|
1
|
+
!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n():"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?exports["teambit.component/dev-files-preview"]=n():e["teambit.component/dev-files-preview"]=n()}(self,(()=>(()=>{"use strict";var e={41657:(e,n,t)=>{var o={id:"teambit.component/content/dev-files@1.95.9",homepage:"https://bit.dev/teambit/component/content/dev-files",exported:!0};Object.defineProperty(n,"__esModule",{value:!0}),n.default=u,s(t(41594));var r=t(5016),a=t(65682),i=["components"];function s(e){return e&&e.__esModule?e:{default:e}}function d(){return d=Object.assign||function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e},d.apply(this,arguments)}function p(e,n){if(null==e)return{};var t,o,r=l(e,n);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)t=a[o],n.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(r[t]=e[t])}return r}function l(e,n){if(null==e)return{};var t,o,r={},a=Object.keys(e);for(o=0;o<a.length;o++)t=a[o],n.indexOf(t)>=0||(r[t]=e[t]);return r}s.__bit_component=o,d.__bit_component=o,p.__bit_component=o,l.__bit_component=o;var c={},m="wrapper";function u(e){var n=e.components,t=p(e,i);return(0,r.mdx)(m,d({},c,t,{components:n,mdxType:"MDXLayout"}),(0,r.mdx)(a.MDXScopeProvider,{components:{},mdxType:"MDXScopeProvider"},(0,r.mdx)("h1",null,"Dev Files"),(0,r.mdx)("p",null,"Dev files are component files used for development and not for production. Dev files are determined as such by the Dev Files Aspect."),(0,r.mdx)("p",null,"Categorizing files as dev files is especially useful in dependency resolution, as dependencies can be inferred to be of type ",(0,r.mdx)("inlineCode",{parentName:"p"},"devDependencies")," by looking at the type of files that use them (if 'package-a' is only used by the component's dev files, then it is a dev dependency of that component)."),(0,r.mdx)("p",null,"For example, the ",(0,r.mdx)("inlineCode",{parentName:"p"},"ui/card")," component has the following file structure:"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre"},"└── card\n ├── card.composition.tsx\n ├── card.docs.mdx\n ├── card.spec.tsx\n ├── card.tsx\n └── index.ts\n")),(0,r.mdx)("p",null,"To examine it:"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre"},"$ bit show ui/card\n\n┌───────────────────┬──────────────────────────────────────────────────────────┐\n│ id │ company.scope/ui/card │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ ... │ │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ files │ card.composition.tsx │\n│ │ card.docs.mdx │\n│ │ card.spec.tsx │\n│ │ card.stories.tsx │\n│ │ card.tsx │\n│ │ index.ts │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ dev files │ card.spec.tsx (teambit.defender/tester) │\n│ │ card.composition.tsx (teambit.compositions/compositions) │\n│ │ card.docs.mdx (teambit.docs/docs) │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ extensions │ ... │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ dependencies │ ... │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ dev dependencies │ @company/scope.envs.my-react@0.0.1----- (component) │\n│ │ @types/testing-library__jest-dom@5.9.5- (package) │\n│ │ @babel/runtime@7.12.18----------------- (package) │\n│ │ @types/jest@^26.0.0-------------------- (package) │\n│ │ @types/react-dom@^17.0.5--------------- (package) │\n│ │ @types/react@^17.0.8------------------- (package) │\n│ │ @types/node@12.20.4-------------------- (package) │\n├───────────────────┼──────────────────────────────────────────────────────────┤\n│ peer dependencies │ ... │\n└───────────────────┴──────────────────────────────────────────────────────────┘\n")),(0,r.mdx)("p",null,"The component's compositions, documentation and test files are categorized as 'dev files'.\nTo the side of each listed dev file, you'll find the Aspect that registered it as such (via the Dev Files Aspect)."),(0,r.mdx)("p",null,"If, for example, ",(0,r.mdx)("inlineCode",{parentName:"p"},"@testing-library/react")," will be used by the test file, ",(0,r.mdx)("inlineCode",{parentName:"p"},"card.spec.tsx")," (and no other production file), it will be inferred as a dev dependency of that component."),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-tsx"},"// card.spec.tsx\n\nimport React from 'react';\nimport { render } from '@testing-library/react';\nimport { BasicCard } from './card.composition';\n\nit('should render a Heading', () => {\n const { getByText } = render(<BasicCard />);\n const rendered = getByText('Self Host');\n expect(rendered).toBeTruthy();\n});\n")),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-bash"},"$ bit show ui/card\n\n┌───────────────────┬──────────────────────────────────────────────────────────┐\n│ dev dependencies │ @company/scope.envs.my-react@0.0.1----- (component) │\n│ │ @types/testing-library__jest-dom@5.9.5- (package) │\n│ │ @babel/runtime@7.12.18----------------- (package) │\n│ │ @types/jest@^26.0.0-------------------- (package) │\n│ │ @types/react-dom@^17.0.5--------------- (package) │\n│ │ @types/react@^17.0.8------------------- (package) │\n│ │ @types/node@12.20.4-------------------- (package) │\n│ │ @testing-library/react@12.0.0---------- (package) │\n└───────────────────┴──────────────────────────────────────────────────────────┘\n")),(0,r.mdx)("h2",null,"Configuring Dev Files"),(0,r.mdx)("p",null,"Dev files are configured by setting glob patterns that match the files' names."),(0,r.mdx)("h3",null,"Setting Glob Patterns via ",(0,r.mdx)("inlineCode",{parentName:"h3"},"workspace.jsonc")),(0,r.mdx)("p",null,"Use the ",(0,r.mdx)("inlineCode",{parentName:"p"},"devFilePatterns")," property in ",(0,r.mdx)("inlineCode",{parentName:"p"},"teambit.component/dev-files")," to manually set a glob pattern for dev files."),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-json"},'{\n "teambit.workspace/variants": {\n "{ui/**}": {\n "teambit.component/dev-files": {\n "devFilePatterns": ["**/*.story.+(js|ts|jsx|tsx)"]\n }\n }\n }\n}\n')),(0,r.mdx)("h3",null,"Setting Glob Patterns via the Dev Files API"),(0,r.mdx)("p",null,"Update your extension or create an new one to register glob patterns for dev files, using the Dev Files ",(0,r.mdx)("inlineCode",{parentName:"p"},"registerDevPattern")," API."),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre"},"bit create aspect extensions/my-dev-files\n")),(0,r.mdx)("h4",null,"registerDevPattern"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-ts"},"registerDevPattern: (pattern: string[]) : void\n")),(0,r.mdx)("p",null,"Use the ",(0,r.mdx)("inlineCode",{parentName:"p"},"registerDevPattern")," API to register an array of glob patterns."),(0,r.mdx)("p",null,"For example:"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-ts"},"import { MainRuntime } from '@teambit/cli';\nimport { DevFilesAspect, DevFilesMain } from '@teambit/dev-files';\nimport { MyDevFilesAspect } from './my-dev-files.aspect';\n\nexport class MyDevFilesMain {\n constructor(private devFiles: DevFilesMain) {}\n\n static slots = [];\n\n static dependencies = [DevFilesAspect];\n\n static runtime = MainRuntime;\n\n static async provider([devFiles]: [DevFilesMain]) {\n devFiles.registerDevPattern(['**/*.my-dev.*']);\n\n return new MyDevFilesMain(devFiles);\n }\n}\n\nMyDevFilesAspect.addRuntime(MyDevFilesMain);\n")),(0,r.mdx)("p",null,"Configure the workspace config with that aspect to apply it on all components in the workspace:"),(0,r.mdx)("pre",null,(0,r.mdx)("code",{parentName:"pre",className:"language-json"},'// workspace.jsonc\n{\n "company.scope/extensions/my-dev-files": {}\n}\n'))))}u.__bit_component=o,u.isMDXComponent=!0},85757:function(e,n,t){var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(n,"__esModule",{value:!0}),n.default=n.DevFiles=void 0;var r=t(41657);Object.defineProperty(n,"DevFiles",{enumerable:!0,get:function(){return o(r).default}}),Object.defineProperty(n,"default",{enumerable:!0,get:function(){return o(r).default}})},24965:(e,n,t)=>{var o={id:"teambit.component/dev-files@1.0.453",homepage:"https://bit.cloud/teambit/component/dev-files",exported:!0};function r(){const e=a(t(41594));return r=function(){return e},e}function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(n,"__esModule",{value:!0}),n.Logo=void 0,r.__bit_component=o,a.__bit_component=o;const i=()=>r().default.createElement("div",{style:{height:"100%",display:"flex",justifyContent:"center"}},r().default.createElement("img",{style:{width:70},src:"https://static.bit.dev/extensions-icons/dev-files.svg"}));i.__bit_component=o,n.Logo=i},5016:e=>{e.exports=MdxJsReact},41594:e=>{e.exports=React},65682:e=>{e.exports=TeambitMdxUiMdxScopeContext}},n={};function t(o){var r=n[o];if(void 0!==r)return r.exports;var a=n[o]={exports:{}};return e[o].call(a.exports,a,a.exports,t),a.exports}t.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return t.d(n,{a:n}),n},t.d=(e,n)=>{for(var o in n)t.o(n,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:n[o]})},t.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};t.r(o),t.d(o,{compositions:()=>v,compositions_metadata:()=>y,overview:()=>x});var r={};t.r(r),t.d(r,{default:()=>f});var a=t(24965),i=(t(41594),t(5016)),s=t(65682),d=t(85757),p=t.n(d),l=["components"];function c(){return c=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var o in t)({}).hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e},c.apply(null,arguments)}var m={},u="wrapper";function f(e){var n=e.components,t=function(e,n){if(null==e)return{};var t,o,r=function(e,n){if(null==e)return{};var t={};for(var o in e)if({}.hasOwnProperty.call(e,o)){if(n.includes(o))continue;t[o]=e[o]}return t}(e,n);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)t=a[o],n.includes(t)||{}.propertyIsEnumerable.call(e,t)&&(r[t]=e[t])}return r}(e,l);return(0,i.mdx)(u,c({},m,t,{components:n,mdxType:"MDXLayout"}),(0,i.mdx)(s.MDXScopeProvider,{components:{DevFiles:p()},mdxType:"MDXScopeProvider"},(0,i.mdx)(p(),{mdxType:"DevFiles"})))}f.isMDXComponent=!0;const v=[a],x=[r],y={compositions:[{displayName:"Logo",identifier:"Logo"}]};return o})()));
|
package/artifacts/schema.json
CHANGED
@@ -93,7 +93,11 @@
|
|
93
93
|
"line": 54,
|
94
94
|
"character": 19
|
95
95
|
},
|
96
|
-
"name": "EnvsMain"
|
96
|
+
"name": "EnvsMain",
|
97
|
+
"componentId": {
|
98
|
+
"scope": "teambit.envs",
|
99
|
+
"name": "envs"
|
100
|
+
}
|
97
101
|
},
|
98
102
|
"isOptional": false,
|
99
103
|
"isSpread": false
|
@@ -113,7 +117,11 @@
|
|
113
117
|
"line": 56,
|
114
118
|
"character": 24
|
115
119
|
},
|
116
|
-
"name": "Workspace"
|
120
|
+
"name": "Workspace",
|
121
|
+
"componentId": {
|
122
|
+
"scope": "teambit.workspace",
|
123
|
+
"name": "workspace"
|
124
|
+
}
|
117
125
|
},
|
118
126
|
"isOptional": false,
|
119
127
|
"isSpread": false
|
@@ -133,7 +141,8 @@
|
|
133
141
|
"line": 58,
|
134
142
|
"character": 29
|
135
143
|
},
|
136
|
-
"name": "DevPatternSlot"
|
144
|
+
"name": "DevPatternSlot",
|
145
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
137
146
|
},
|
138
147
|
"isOptional": false,
|
139
148
|
"isSpread": false
|
@@ -153,7 +162,8 @@
|
|
153
162
|
"line": 63,
|
154
163
|
"character": 22
|
155
164
|
},
|
156
|
-
"name": "DevFilesConfig"
|
165
|
+
"name": "DevFilesConfig",
|
166
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
157
167
|
},
|
158
168
|
"isOptional": false,
|
159
169
|
"isSpread": false
|
@@ -206,7 +216,11 @@
|
|
206
216
|
"line": 71,
|
207
217
|
"character": 39
|
208
218
|
},
|
209
|
-
"name": "Component"
|
219
|
+
"name": "Component",
|
220
|
+
"componentId": {
|
221
|
+
"scope": "teambit.component",
|
222
|
+
"name": "component"
|
223
|
+
}
|
210
224
|
},
|
211
225
|
"isOptional": false,
|
212
226
|
"isSpread": false
|
@@ -250,7 +264,11 @@
|
|
250
264
|
"line": 141,
|
251
265
|
"character": 36
|
252
266
|
},
|
253
|
-
"name": "EnvJsonc"
|
267
|
+
"name": "EnvJsonc",
|
268
|
+
"componentId": {
|
269
|
+
"scope": "teambit.envs",
|
270
|
+
"name": "envs"
|
271
|
+
}
|
254
272
|
},
|
255
273
|
"isOptional": false,
|
256
274
|
"isSpread": false
|
@@ -270,7 +288,11 @@
|
|
270
288
|
"line": 141,
|
271
289
|
"character": 53
|
272
290
|
},
|
273
|
-
"name": "EnvJsonc"
|
291
|
+
"name": "EnvJsonc",
|
292
|
+
"componentId": {
|
293
|
+
"scope": "teambit.envs",
|
294
|
+
"name": "envs"
|
295
|
+
}
|
274
296
|
},
|
275
297
|
"isOptional": false,
|
276
298
|
"isSpread": false
|
@@ -292,7 +314,11 @@
|
|
292
314
|
"line": 141,
|
293
315
|
"character": 72
|
294
316
|
},
|
295
|
-
"name": "EnvJsonc"
|
317
|
+
"name": "EnvJsonc",
|
318
|
+
"componentId": {
|
319
|
+
"scope": "teambit.envs",
|
320
|
+
"name": "envs"
|
321
|
+
}
|
296
322
|
}
|
297
323
|
]
|
298
324
|
},
|
@@ -334,7 +360,11 @@
|
|
334
360
|
"line": 170,
|
335
361
|
"character": 29
|
336
362
|
},
|
337
|
-
"name": "Component"
|
363
|
+
"name": "Component",
|
364
|
+
"componentId": {
|
365
|
+
"scope": "teambit.component",
|
366
|
+
"name": "component"
|
367
|
+
}
|
338
368
|
},
|
339
369
|
"isOptional": false,
|
340
370
|
"isSpread": false
|
@@ -415,7 +445,11 @@
|
|
415
445
|
"line": 179,
|
416
446
|
"character": 24
|
417
447
|
},
|
418
|
-
"name": "Component"
|
448
|
+
"name": "Component",
|
449
|
+
"componentId": {
|
450
|
+
"scope": "teambit.component",
|
451
|
+
"name": "component"
|
452
|
+
}
|
419
453
|
},
|
420
454
|
"isOptional": false,
|
421
455
|
"isSpread": false
|
@@ -500,7 +534,8 @@
|
|
500
534
|
"line": 188,
|
501
535
|
"character": 31
|
502
536
|
},
|
503
|
-
"name": "DevPatterns"
|
537
|
+
"name": "DevPatterns",
|
538
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
504
539
|
},
|
505
540
|
"isOptional": false,
|
506
541
|
"isSpread": false
|
@@ -553,7 +588,11 @@
|
|
553
588
|
"line": 196,
|
554
589
|
"character": 26
|
555
590
|
},
|
556
|
-
"name": "Component"
|
591
|
+
"name": "Component",
|
592
|
+
"componentId": {
|
593
|
+
"scope": "teambit.component",
|
594
|
+
"name": "component"
|
595
|
+
}
|
557
596
|
},
|
558
597
|
"isOptional": false,
|
559
598
|
"isSpread": false
|
@@ -596,7 +635,8 @@
|
|
596
635
|
"line": 202,
|
597
636
|
"character": 55
|
598
637
|
},
|
599
|
-
"name": "LegacyComponent"
|
638
|
+
"name": "LegacyComponent",
|
639
|
+
"packageName": "@teambit/legacy/dist/consumer/component"
|
600
640
|
},
|
601
641
|
"isOptional": false,
|
602
642
|
"isSpread": false
|
@@ -670,7 +710,11 @@
|
|
670
710
|
"line": 214,
|
671
711
|
"character": 36
|
672
712
|
},
|
673
|
-
"name": "Component"
|
713
|
+
"name": "Component",
|
714
|
+
"componentId": {
|
715
|
+
"scope": "teambit.component",
|
716
|
+
"name": "component"
|
717
|
+
}
|
674
718
|
},
|
675
719
|
"isOptional": false,
|
676
720
|
"isSpread": false
|
@@ -692,7 +736,8 @@
|
|
692
736
|
"line": 214,
|
693
737
|
"character": 56
|
694
738
|
},
|
695
|
-
"name": "DevFiles"
|
739
|
+
"name": "DevFiles",
|
740
|
+
"internalFilePath": "dev-files.ts"
|
696
741
|
}
|
697
742
|
]
|
698
743
|
},
|
@@ -817,7 +862,11 @@
|
|
817
862
|
"line": 237,
|
818
863
|
"character": 58
|
819
864
|
},
|
820
|
-
"name": "EnvsMain"
|
865
|
+
"name": "EnvsMain",
|
866
|
+
"componentId": {
|
867
|
+
"scope": "teambit.envs",
|
868
|
+
"name": "envs"
|
869
|
+
}
|
821
870
|
},
|
822
871
|
{
|
823
872
|
"__schema": "TypeRefSchema",
|
@@ -826,7 +875,11 @@
|
|
826
875
|
"line": 237,
|
827
876
|
"character": 68
|
828
877
|
},
|
829
|
-
"name": "Workspace"
|
878
|
+
"name": "Workspace",
|
879
|
+
"componentId": {
|
880
|
+
"scope": "teambit.workspace",
|
881
|
+
"name": "workspace"
|
882
|
+
}
|
830
883
|
},
|
831
884
|
{
|
832
885
|
"__schema": "TypeRefSchema",
|
@@ -835,7 +888,11 @@
|
|
835
888
|
"line": 237,
|
836
889
|
"character": 79
|
837
890
|
},
|
838
|
-
"name": "ComponentMain"
|
891
|
+
"name": "ComponentMain",
|
892
|
+
"componentId": {
|
893
|
+
"scope": "teambit.component",
|
894
|
+
"name": "component"
|
895
|
+
}
|
839
896
|
},
|
840
897
|
{
|
841
898
|
"__schema": "TypeRefSchema",
|
@@ -844,7 +901,11 @@
|
|
844
901
|
"line": 237,
|
845
902
|
"character": 94
|
846
903
|
},
|
847
|
-
"name": "GraphqlMain"
|
904
|
+
"name": "GraphqlMain",
|
905
|
+
"componentId": {
|
906
|
+
"scope": "teambit.harmony",
|
907
|
+
"name": "graphql"
|
908
|
+
}
|
848
909
|
},
|
849
910
|
{
|
850
911
|
"__schema": "TypeRefSchema",
|
@@ -853,7 +914,11 @@
|
|
853
914
|
"line": 237,
|
854
915
|
"character": 107
|
855
916
|
},
|
856
|
-
"name": "ScopeMain"
|
917
|
+
"name": "ScopeMain",
|
918
|
+
"componentId": {
|
919
|
+
"scope": "teambit.scope",
|
920
|
+
"name": "scope"
|
921
|
+
}
|
857
922
|
}
|
858
923
|
]
|
859
924
|
},
|
@@ -875,7 +940,8 @@
|
|
875
940
|
"line": 238,
|
876
941
|
"character": 13
|
877
942
|
},
|
878
|
-
"name": "DevFilesConfig"
|
943
|
+
"name": "DevFilesConfig",
|
944
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
879
945
|
},
|
880
946
|
"isOptional": false,
|
881
947
|
"isSpread": false
|
@@ -903,7 +969,8 @@
|
|
903
969
|
"line": 239,
|
904
970
|
"character": 24
|
905
971
|
},
|
906
|
-
"name": "DevPatternSlot"
|
972
|
+
"name": "DevPatternSlot",
|
973
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
907
974
|
}
|
908
975
|
]
|
909
976
|
},
|
@@ -1209,7 +1276,7 @@
|
|
1209
1276
|
"line": 34,
|
1210
1277
|
"character": 28
|
1211
1278
|
},
|
1212
|
-
"signature": "(component: Component): DevPattern",
|
1279
|
+
"signature": "(component: (component: teambit.component/component) Component): DevPattern",
|
1213
1280
|
"name": "",
|
1214
1281
|
"params": [
|
1215
1282
|
{
|
@@ -1227,7 +1294,11 @@
|
|
1227
1294
|
"line": 34,
|
1228
1295
|
"character": 40
|
1229
1296
|
},
|
1230
|
-
"name": "Component"
|
1297
|
+
"name": "Component",
|
1298
|
+
"componentId": {
|
1299
|
+
"scope": "teambit.component",
|
1300
|
+
"name": "component"
|
1301
|
+
}
|
1231
1302
|
},
|
1232
1303
|
"isOptional": false,
|
1233
1304
|
"isSpread": false
|
@@ -1240,7 +1311,8 @@
|
|
1240
1311
|
"line": 34,
|
1241
1312
|
"character": 54
|
1242
1313
|
},
|
1243
|
-
"name": "DevPattern"
|
1314
|
+
"name": "DevPattern",
|
1315
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
1244
1316
|
},
|
1245
1317
|
"modifiers": []
|
1246
1318
|
}
|
@@ -1252,7 +1324,8 @@
|
|
1252
1324
|
"line": 34,
|
1253
1325
|
"character": 68
|
1254
1326
|
},
|
1255
|
-
"name": "DevPattern"
|
1327
|
+
"name": "DevPattern",
|
1328
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
1256
1329
|
}
|
1257
1330
|
]
|
1258
1331
|
}
|
@@ -1453,6 +1526,11 @@
|
|
1453
1526
|
"character": 30
|
1454
1527
|
},
|
1455
1528
|
"name": "SlotRegistry",
|
1529
|
+
"componentId": {
|
1530
|
+
"scope": "teambit.harmony",
|
1531
|
+
"name": "harmony",
|
1532
|
+
"version": "0.4.6"
|
1533
|
+
},
|
1456
1534
|
"typeArgs": [
|
1457
1535
|
{
|
1458
1536
|
"__schema": "TypeRefSchema",
|
@@ -1461,7 +1539,8 @@
|
|
1461
1539
|
"line": 46,
|
1462
1540
|
"character": 43
|
1463
1541
|
},
|
1464
|
-
"name": "DevPatterns"
|
1542
|
+
"name": "DevPatterns",
|
1543
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
1465
1544
|
}
|
1466
1545
|
]
|
1467
1546
|
}
|
@@ -1549,7 +1628,11 @@
|
|
1549
1628
|
"line": 54,
|
1550
1629
|
"character": 19
|
1551
1630
|
},
|
1552
|
-
"name": "EnvsMain"
|
1631
|
+
"name": "EnvsMain",
|
1632
|
+
"componentId": {
|
1633
|
+
"scope": "teambit.envs",
|
1634
|
+
"name": "envs"
|
1635
|
+
}
|
1553
1636
|
},
|
1554
1637
|
"isOptional": false,
|
1555
1638
|
"isSpread": false
|
@@ -1569,7 +1652,11 @@
|
|
1569
1652
|
"line": 56,
|
1570
1653
|
"character": 24
|
1571
1654
|
},
|
1572
|
-
"name": "Workspace"
|
1655
|
+
"name": "Workspace",
|
1656
|
+
"componentId": {
|
1657
|
+
"scope": "teambit.workspace",
|
1658
|
+
"name": "workspace"
|
1659
|
+
}
|
1573
1660
|
},
|
1574
1661
|
"isOptional": false,
|
1575
1662
|
"isSpread": false
|
@@ -1589,7 +1676,8 @@
|
|
1589
1676
|
"line": 58,
|
1590
1677
|
"character": 29
|
1591
1678
|
},
|
1592
|
-
"name": "DevPatternSlot"
|
1679
|
+
"name": "DevPatternSlot",
|
1680
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
1593
1681
|
},
|
1594
1682
|
"isOptional": false,
|
1595
1683
|
"isSpread": false
|
@@ -1609,7 +1697,8 @@
|
|
1609
1697
|
"line": 63,
|
1610
1698
|
"character": 22
|
1611
1699
|
},
|
1612
|
-
"name": "DevFilesConfig"
|
1700
|
+
"name": "DevFilesConfig",
|
1701
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
1613
1702
|
},
|
1614
1703
|
"isOptional": false,
|
1615
1704
|
"isSpread": false
|
@@ -1662,7 +1751,11 @@
|
|
1662
1751
|
"line": 71,
|
1663
1752
|
"character": 39
|
1664
1753
|
},
|
1665
|
-
"name": "Component"
|
1754
|
+
"name": "Component",
|
1755
|
+
"componentId": {
|
1756
|
+
"scope": "teambit.component",
|
1757
|
+
"name": "component"
|
1758
|
+
}
|
1666
1759
|
},
|
1667
1760
|
"isOptional": false,
|
1668
1761
|
"isSpread": false
|
@@ -1706,7 +1799,11 @@
|
|
1706
1799
|
"line": 141,
|
1707
1800
|
"character": 36
|
1708
1801
|
},
|
1709
|
-
"name": "EnvJsonc"
|
1802
|
+
"name": "EnvJsonc",
|
1803
|
+
"componentId": {
|
1804
|
+
"scope": "teambit.envs",
|
1805
|
+
"name": "envs"
|
1806
|
+
}
|
1710
1807
|
},
|
1711
1808
|
"isOptional": false,
|
1712
1809
|
"isSpread": false
|
@@ -1726,7 +1823,11 @@
|
|
1726
1823
|
"line": 141,
|
1727
1824
|
"character": 53
|
1728
1825
|
},
|
1729
|
-
"name": "EnvJsonc"
|
1826
|
+
"name": "EnvJsonc",
|
1827
|
+
"componentId": {
|
1828
|
+
"scope": "teambit.envs",
|
1829
|
+
"name": "envs"
|
1830
|
+
}
|
1730
1831
|
},
|
1731
1832
|
"isOptional": false,
|
1732
1833
|
"isSpread": false
|
@@ -1748,7 +1849,11 @@
|
|
1748
1849
|
"line": 141,
|
1749
1850
|
"character": 72
|
1750
1851
|
},
|
1751
|
-
"name": "EnvJsonc"
|
1852
|
+
"name": "EnvJsonc",
|
1853
|
+
"componentId": {
|
1854
|
+
"scope": "teambit.envs",
|
1855
|
+
"name": "envs"
|
1856
|
+
}
|
1752
1857
|
}
|
1753
1858
|
]
|
1754
1859
|
},
|
@@ -1790,7 +1895,11 @@
|
|
1790
1895
|
"line": 170,
|
1791
1896
|
"character": 29
|
1792
1897
|
},
|
1793
|
-
"name": "Component"
|
1898
|
+
"name": "Component",
|
1899
|
+
"componentId": {
|
1900
|
+
"scope": "teambit.component",
|
1901
|
+
"name": "component"
|
1902
|
+
}
|
1794
1903
|
},
|
1795
1904
|
"isOptional": false,
|
1796
1905
|
"isSpread": false
|
@@ -1871,7 +1980,11 @@
|
|
1871
1980
|
"line": 179,
|
1872
1981
|
"character": 24
|
1873
1982
|
},
|
1874
|
-
"name": "Component"
|
1983
|
+
"name": "Component",
|
1984
|
+
"componentId": {
|
1985
|
+
"scope": "teambit.component",
|
1986
|
+
"name": "component"
|
1987
|
+
}
|
1875
1988
|
},
|
1876
1989
|
"isOptional": false,
|
1877
1990
|
"isSpread": false
|
@@ -1956,7 +2069,8 @@
|
|
1956
2069
|
"line": 188,
|
1957
2070
|
"character": 31
|
1958
2071
|
},
|
1959
|
-
"name": "DevPatterns"
|
2072
|
+
"name": "DevPatterns",
|
2073
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
1960
2074
|
},
|
1961
2075
|
"isOptional": false,
|
1962
2076
|
"isSpread": false
|
@@ -2009,7 +2123,11 @@
|
|
2009
2123
|
"line": 196,
|
2010
2124
|
"character": 26
|
2011
2125
|
},
|
2012
|
-
"name": "Component"
|
2126
|
+
"name": "Component",
|
2127
|
+
"componentId": {
|
2128
|
+
"scope": "teambit.component",
|
2129
|
+
"name": "component"
|
2130
|
+
}
|
2013
2131
|
},
|
2014
2132
|
"isOptional": false,
|
2015
2133
|
"isSpread": false
|
@@ -2052,7 +2170,8 @@
|
|
2052
2170
|
"line": 202,
|
2053
2171
|
"character": 55
|
2054
2172
|
},
|
2055
|
-
"name": "LegacyComponent"
|
2173
|
+
"name": "LegacyComponent",
|
2174
|
+
"packageName": "@teambit/legacy/dist/consumer/component"
|
2056
2175
|
},
|
2057
2176
|
"isOptional": false,
|
2058
2177
|
"isSpread": false
|
@@ -2126,7 +2245,11 @@
|
|
2126
2245
|
"line": 214,
|
2127
2246
|
"character": 36
|
2128
2247
|
},
|
2129
|
-
"name": "Component"
|
2248
|
+
"name": "Component",
|
2249
|
+
"componentId": {
|
2250
|
+
"scope": "teambit.component",
|
2251
|
+
"name": "component"
|
2252
|
+
}
|
2130
2253
|
},
|
2131
2254
|
"isOptional": false,
|
2132
2255
|
"isSpread": false
|
@@ -2148,7 +2271,8 @@
|
|
2148
2271
|
"line": 214,
|
2149
2272
|
"character": 56
|
2150
2273
|
},
|
2151
|
-
"name": "DevFiles"
|
2274
|
+
"name": "DevFiles",
|
2275
|
+
"internalFilePath": "dev-files.ts"
|
2152
2276
|
}
|
2153
2277
|
]
|
2154
2278
|
},
|
@@ -2273,7 +2397,11 @@
|
|
2273
2397
|
"line": 237,
|
2274
2398
|
"character": 58
|
2275
2399
|
},
|
2276
|
-
"name": "EnvsMain"
|
2400
|
+
"name": "EnvsMain",
|
2401
|
+
"componentId": {
|
2402
|
+
"scope": "teambit.envs",
|
2403
|
+
"name": "envs"
|
2404
|
+
}
|
2277
2405
|
},
|
2278
2406
|
{
|
2279
2407
|
"__schema": "TypeRefSchema",
|
@@ -2282,7 +2410,11 @@
|
|
2282
2410
|
"line": 237,
|
2283
2411
|
"character": 68
|
2284
2412
|
},
|
2285
|
-
"name": "Workspace"
|
2413
|
+
"name": "Workspace",
|
2414
|
+
"componentId": {
|
2415
|
+
"scope": "teambit.workspace",
|
2416
|
+
"name": "workspace"
|
2417
|
+
}
|
2286
2418
|
},
|
2287
2419
|
{
|
2288
2420
|
"__schema": "TypeRefSchema",
|
@@ -2291,7 +2423,11 @@
|
|
2291
2423
|
"line": 237,
|
2292
2424
|
"character": 79
|
2293
2425
|
},
|
2294
|
-
"name": "ComponentMain"
|
2426
|
+
"name": "ComponentMain",
|
2427
|
+
"componentId": {
|
2428
|
+
"scope": "teambit.component",
|
2429
|
+
"name": "component"
|
2430
|
+
}
|
2295
2431
|
},
|
2296
2432
|
{
|
2297
2433
|
"__schema": "TypeRefSchema",
|
@@ -2300,7 +2436,11 @@
|
|
2300
2436
|
"line": 237,
|
2301
2437
|
"character": 94
|
2302
2438
|
},
|
2303
|
-
"name": "GraphqlMain"
|
2439
|
+
"name": "GraphqlMain",
|
2440
|
+
"componentId": {
|
2441
|
+
"scope": "teambit.harmony",
|
2442
|
+
"name": "graphql"
|
2443
|
+
}
|
2304
2444
|
},
|
2305
2445
|
{
|
2306
2446
|
"__schema": "TypeRefSchema",
|
@@ -2309,7 +2449,11 @@
|
|
2309
2449
|
"line": 237,
|
2310
2450
|
"character": 107
|
2311
2451
|
},
|
2312
|
-
"name": "ScopeMain"
|
2452
|
+
"name": "ScopeMain",
|
2453
|
+
"componentId": {
|
2454
|
+
"scope": "teambit.scope",
|
2455
|
+
"name": "scope"
|
2456
|
+
}
|
2313
2457
|
}
|
2314
2458
|
]
|
2315
2459
|
},
|
@@ -2331,7 +2475,8 @@
|
|
2331
2475
|
"line": 238,
|
2332
2476
|
"character": 13
|
2333
2477
|
},
|
2334
|
-
"name": "DevFilesConfig"
|
2478
|
+
"name": "DevFilesConfig",
|
2479
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
2335
2480
|
},
|
2336
2481
|
"isOptional": false,
|
2337
2482
|
"isSpread": false
|
@@ -2359,7 +2504,8 @@
|
|
2359
2504
|
"line": 239,
|
2360
2505
|
"character": 24
|
2361
2506
|
},
|
2362
|
-
"name": "DevPatternSlot"
|
2507
|
+
"name": "DevPatternSlot",
|
2508
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
2363
2509
|
}
|
2364
2510
|
]
|
2365
2511
|
},
|
@@ -2518,7 +2664,8 @@
|
|
2518
2664
|
"line": 29,
|
2519
2665
|
"character": 30
|
2520
2666
|
},
|
2521
|
-
"name": "DevPatternDescriptor"
|
2667
|
+
"name": "DevPatternDescriptor",
|
2668
|
+
"internalFilePath": "dev-files.main.runtime.ts"
|
2522
2669
|
}
|
2523
2670
|
]
|
2524
2671
|
}
|
@@ -2539,7 +2686,7 @@
|
|
2539
2686
|
"componentId": {
|
2540
2687
|
"scope": "teambit.component",
|
2541
2688
|
"name": "dev-files",
|
2542
|
-
"version": "1.0.
|
2689
|
+
"version": "1.0.453"
|
2543
2690
|
},
|
2544
2691
|
"taggedModuleExports": []
|
2545
2692
|
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_dev-files@1.0.
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_dev-files@1.0.
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_dev-files@1.0.453/dist/dev-files.composition.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_dev-files@1.0.453/dist/dev-files.docs.mdx';
|
3
3
|
|
4
4
|
export const compositions = [compositions_0];
|
5
5
|
export const overview = [overview_0];
|
package/package.json
CHANGED
@@ -1,24 +1,24 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/dev-files",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.453",
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/dev-files",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.component",
|
8
8
|
"name": "dev-files",
|
9
|
-
"version": "1.0.
|
9
|
+
"version": "1.0.453"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"graphql-tag": "2.12.1",
|
13
13
|
"lodash": "4.17.21",
|
14
14
|
"@teambit/harmony": "0.4.6",
|
15
|
-
"@teambit/component": "1.0.
|
16
|
-
"@teambit/graphql": "1.0.
|
17
|
-
"@teambit/cli": "0.0.
|
15
|
+
"@teambit/component": "1.0.453",
|
16
|
+
"@teambit/graphql": "1.0.453",
|
17
|
+
"@teambit/cli": "0.0.1030",
|
18
18
|
"@teambit/component.sources": "0.0.42",
|
19
|
-
"@teambit/envs": "1.0.
|
20
|
-
"@teambit/scope": "1.0.
|
21
|
-
"@teambit/workspace": "1.0.
|
19
|
+
"@teambit/envs": "1.0.453",
|
20
|
+
"@teambit/scope": "1.0.453",
|
21
|
+
"@teambit/workspace": "1.0.453"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
24
24
|
"@types/lodash": "4.14.165",
|