Commits
master
Name already in use
Commits on May 29, 2023
-
fix(ws): empty comps gallery (#7462)
## Proposed Changes - Empty Comp Gallery fixes
-
-
fix(merge-lane), avoid merging the same components multiple times whe…
…n --include-deps is used (#7450)
-
fix: always link harmony from bvm unless it is in root policy (#7460)
## Proposed Changes - - -
-
bump teambit version to 0.1.53 [skip ci]
CircleCI committedMay 29, 2023 -
bump @teambit/legacy version to 1.0.499 [skip ci]
CircleCI committedMay 29, 2023 -
fix(checkout), make components available on main without pre-bit-impo…
…rt (#7457) When on main, `bit checkout head` makes lane-components available on main. However, in some scenario it was needed to run `bit import` first. This PR fixes it to import during the checkout before determining the ids to checkout.
Commits on May 28, 2023
-
-
-
-
bump teambit version to 0.1.52 [skip ci]
CircleCI committedMay 28, 2023 -
fix
getComponentDevPatternsforTesterMain(#7454)## Proposed Changes `getComponentDevPatterns` in TesterMain is not coherent with the same function from DocsMain & CompositionsMain, it is supposed to return `{name: string, pattern: string[]}`, but in TesterMain it sometimes will return `string[]` and sometimes `{name: string, pattern: string[]}`. Also typescript incorrectly infers the return type to `string[]` (why it doesn't detect the issue? I don't know, it should have thrown a typecast error), which means that you would falsely believe that you would get the correct type until it doesn't... Co-authored-by: Gilad Shoham <shoham.gilad@gmail.com> -
-
fix(preview): override body browser defaults in html template (#7451)
## Proposed Changes - override `body` styles in preview html template
Commits on May 27, 2023
-
bump @teambit/legacy version to 1.0.498 [skip ci]
CircleCI committedMay 27, 2023
Commits on May 26, 2023
-
fix(fetch), throw if the remote does not complete in 30 minutes (#7456)
Here is an example how the client can wait forever for a remote: https://app.circleci.com/pipelines/github/teambit/bit/29462/workflows/e5534691-6533-4d43-bbf7-3c48decb86a8/jobs/276346 To avoid this, just exit the process if it takes more than X minutes. Currently set to 30.
-
bump teambit version to 0.1.51 [skip ci]
CircleCI committedMay 26, 2023 -
bump @teambit/legacy version to 1.0.497 [skip ci]
CircleCI committedMay 26, 2023
Commits on May 25, 2023
-
fix, avoid loading the version object for idOnLane (#7449)
`idOnLane` method is used to check whether a version exists on the lane or on main. Until now, given the bitId, it was loading not only the Component object but also the Version object, and if not exits it was throwing ComponentNotFound. It's definitely possible that the version in question doesn't exist locally. This PR fixes it to only load the Component object.
-
feat(lane-merge), support squash when merging one lane to another (#7448
-
bump teambit version to 0.1.50 [skip ci]
CircleCI committedMay 25, 2023 -
bump @teambit/legacy version to 1.0.496 [skip ci]
CircleCI committedMay 25, 2023
Commits on May 24, 2023
Commits on May 23, 2023
-
feat(stash): introduce a POC of "bit stash" (#7436)
## Proposed Changes - `bit stash save` - saves the modified components data to the local scope, generate a hash per component and save the map of id:hash in `.bit/stash/stash-{counter}.json`. then, bit-checkout-reset the component. (so then it's not modified anymore). - `bit stash load` - load the latest stash data, checkout the components according to the hashes and delete the stash file. -
-
bump teambit version to 0.1.49 [skip ci]
CircleCI committedMay 23, 2023 -
bump @teambit/legacy version to 1.0.495 [skip ci]
CircleCI committedMay 23, 2023 -
refactor, deprecate importManyDeltaWithoutDeps and importManyIfMissin…
…gWithoutDeps (#7428) In favor of importWithoutDeps. No need to calculate delta anymore because all remote-scopes are now able to provide VersionHistory object. Changed `importWithoutDeps` to support `collectParents` where all history is needed.

