@teambit/lanes 0.0.262 → 0.0.265
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lanes.composition.d.ts +2 -0
- package/dist/lanes.composition.js +35 -0
- package/dist/lanes.composition.js.map +1 -0
- package/dist/{lanes.docs.md → lanes.docs.mdx} +13 -2
- package/lanes.composition.tsx +7 -0
- package/{lanes.docs.md → lanes.docs.mdx} +13 -2
- package/package-tar/teambit-lanes-0.0.265.tgz +0 -0
- package/package.json +14 -14
- package/preview-1648524148272.js +2 -0
- package/package-tar/teambit-lanes-0.0.262.tgz +0 -0
- package/preview-1648265027481.js +0 -1
@@ -0,0 +1,35 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports.Logo = void 0;
|
9
|
+
|
10
|
+
function _react() {
|
11
|
+
const data = _interopRequireDefault(require("react"));
|
12
|
+
|
13
|
+
_react = function () {
|
14
|
+
return data;
|
15
|
+
};
|
16
|
+
|
17
|
+
return data;
|
18
|
+
}
|
19
|
+
|
20
|
+
const Logo = () => /*#__PURE__*/_react().default.createElement("div", {
|
21
|
+
style: {
|
22
|
+
height: '100%',
|
23
|
+
display: 'flex',
|
24
|
+
justifyContent: 'center'
|
25
|
+
}
|
26
|
+
}, /*#__PURE__*/_react().default.createElement("img", {
|
27
|
+
style: {
|
28
|
+
width: 70
|
29
|
+
},
|
30
|
+
src: "https://static.bit.dev/extensions-icons/lanes.svg"
|
31
|
+
}));
|
32
|
+
|
33
|
+
exports.Logo = Logo;
|
34
|
+
|
35
|
+
//# sourceMappingURL=lanes.composition.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["lanes.composition.tsx"],"names":["Logo","height","display","justifyContent","width"],"mappings":";;;;;;;;;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;AAEO,MAAMA,IAAI,GAAG,mBAClB;AAAK,EAAA,KAAK,EAAE;AAAEC,IAAAA,MAAM,EAAE,MAAV;AAAkBC,IAAAA,OAAO,EAAE,MAA3B;AAAmCC,IAAAA,cAAc,EAAE;AAAnD;AAAZ,gBACE;AAAK,EAAA,KAAK,EAAE;AAAEC,IAAAA,KAAK,EAAE;AAAT,GAAZ;AAA2B,EAAA,GAAG,EAAC;AAA/B,EADF,CADK","sourcesContent":["import React from 'react';\n\nexport const Logo = () => (\n <div style={{ height: '100%', display: 'flex', justifyContent: 'center' }}>\n <img style={{ width: 70 }} src=\"https://static.bit.dev/extensions-icons/lanes.svg\" />\n </div>\n);\n"]}
|
@@ -1,3 +1,8 @@
|
|
1
|
+
---
|
2
|
+
description: Collaborate on changes across multiple components.
|
3
|
+
labels: ['core aspect', 'cli', 'version control']
|
4
|
+
---
|
5
|
+
|
1
6
|
See more details about these two features here: [Lanes](https://github.com/teambit/bit/issues/1986). [Snaps](https://github.com/teambit/bit/issues/1985).
|
2
7
|
|
3
8
|
The following describes the final implementation, which differs from the specification above.
|
@@ -14,8 +19,14 @@ The following describes the final implementation, which differs from the specifi
|
|
14
19
|
- track local lane to a remote lane: `bit switch --as`
|
15
20
|
- remove a lane `bit lane remove <name>`.
|
16
21
|
- fetch lane objects (without the components): `bit fetch --lanes`.
|
17
|
-
- import a lane: `bit switch <name> --remote
|
18
|
-
|
22
|
+
- import a lane: `bit switch <name> --remote`
|
23
|
+
|
24
|
+
.
|
25
|
+
|
26
|
+
- export current lane: `bit export`
|
27
|
+
|
28
|
+
.
|
29
|
+
|
19
30
|
- (internal) cat lane object: `bit cat-lane <name>`.
|
20
31
|
|
21
32
|
## Remaining tasks
|
@@ -1,3 +1,8 @@
|
|
1
|
+
---
|
2
|
+
description: Collaborate on changes across multiple components.
|
3
|
+
labels: ['core aspect', 'cli', 'version control']
|
4
|
+
---
|
5
|
+
|
1
6
|
See more details about these two features here: [Lanes](https://github.com/teambit/bit/issues/1986). [Snaps](https://github.com/teambit/bit/issues/1985).
|
2
7
|
|
3
8
|
The following describes the final implementation, which differs from the specification above.
|
@@ -14,8 +19,14 @@ The following describes the final implementation, which differs from the specifi
|
|
14
19
|
- track local lane to a remote lane: `bit switch --as`
|
15
20
|
- remove a lane `bit lane remove <name>`.
|
16
21
|
- fetch lane objects (without the components): `bit fetch --lanes`.
|
17
|
-
- import a lane: `bit switch <name> --remote
|
18
|
-
|
22
|
+
- import a lane: `bit switch <name> --remote`
|
23
|
+
|
24
|
+
.
|
25
|
+
|
26
|
+
- export current lane: `bit export`
|
27
|
+
|
28
|
+
.
|
29
|
+
|
19
30
|
- (internal) cat lane object: `bit cat-lane <name>`.
|
20
31
|
|
21
32
|
## Remaining tasks
|
Binary file
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/lanes",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.265",
|
4
4
|
"homepage": "https://bit.dev/teambit/lanes/lanes",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.lanes",
|
8
8
|
"name": "lanes",
|
9
|
-
"version": "0.0.
|
9
|
+
"version": "0.0.265"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"chalk": "2.4.2",
|
@@ -18,24 +18,24 @@
|
|
18
18
|
"@babel/runtime": "7.12.18",
|
19
19
|
"core-js": "^3.0.0",
|
20
20
|
"@teambit/bit-error": "0.0.394",
|
21
|
-
"@teambit/cli": "0.0.
|
22
|
-
"@teambit/merging": "0.0.
|
23
|
-
"@teambit/scope": "0.0.
|
24
|
-
"@teambit/workspace": "0.0.
|
25
|
-
"@teambit/graphql": "0.0.
|
26
|
-
"@teambit/community": "0.0.
|
21
|
+
"@teambit/cli": "0.0.463",
|
22
|
+
"@teambit/merging": "0.0.8",
|
23
|
+
"@teambit/scope": "0.0.693",
|
24
|
+
"@teambit/workspace": "0.0.693",
|
25
|
+
"@teambit/graphql": "0.0.693",
|
26
|
+
"@teambit/community": "0.0.11",
|
27
27
|
"@teambit/lanes.modules.diff": "0.0.107",
|
28
|
-
"@teambit/component": "0.0.
|
29
|
-
"@teambit/lanes.ui.lanes": "0.0.
|
30
|
-
"@teambit/react-router": "0.0.
|
31
|
-
"@teambit/sidebar": "0.0.
|
28
|
+
"@teambit/component": "0.0.693",
|
29
|
+
"@teambit/lanes.ui.lanes": "0.0.27",
|
30
|
+
"@teambit/react-router": "0.0.693",
|
31
|
+
"@teambit/sidebar": "0.0.693",
|
32
32
|
"@teambit/ui-foundation.ui.react-router.slot-router": "0.0.488",
|
33
|
-
"@teambit/ui": "0.0.
|
33
|
+
"@teambit/ui": "0.0.693",
|
34
34
|
"@teambit/legacy-bit-id": "0.0.399"
|
35
35
|
},
|
36
36
|
"devDependencies": {
|
37
|
-
"@types/react-router-dom": "5.1.7",
|
38
37
|
"@types/react": "^17.0.8",
|
38
|
+
"@types/react-router-dom": "5.1.7",
|
39
39
|
"@types/mocha": "9.1.0",
|
40
40
|
"@types/testing-library__jest-dom": "5.9.5",
|
41
41
|
"@types/jest": "^26.0.0",
|
@@ -0,0 +1,2 @@
|
|
1
|
+
export const compositions = [require('/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.265/dist/lanes.composition.js')]
|
2
|
+
export const overview = [require('/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.265/dist/lanes.docs.mdx')]
|
Binary file
|
package/preview-1648265027481.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export const overview = [require('/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.262/dist/lanes.docs.md')]
|