@teambit/lanes.modules.diff 0.0.107 → 0.0.108
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/lane-diff.cmd.d.ts +1 -1
- package/dist/lane-diff.cmd.js +3 -5
- package/dist/lane-diff.cmd.js.map +1 -1
- package/lane-diff.cmd.ts +3 -5
- package/package-tar/teambit-lanes.modules.diff-0.0.108.tgz +0 -0
- package/package.json +3 -3
- package/{preview-1647509820722.js → preview-1651029886240.js} +0 -0
- package/tsconfig.json +1 -1
- package/package-tar/teambit-lanes.modules.diff-0.0.107.tgz +0 -0
package/dist/lane-diff.cmd.d.ts
CHANGED
package/dist/lane-diff.cmd.js
CHANGED
|
@@ -21,12 +21,10 @@ class LaneDiffCmd {
|
|
|
21
21
|
this.workspace = workspace;
|
|
22
22
|
this.scope = scope;
|
|
23
23
|
this.name = 'diff [values...]';
|
|
24
|
-
this.
|
|
25
|
-
this.
|
|
26
|
-
bit lane diff => diff between the current lane and default lane. (only inside workspace).
|
|
24
|
+
this.description = `show diff between lanes`;
|
|
25
|
+
this.extendedDescription = `bit lane diff => diff between the current lane and default lane. (only inside workspace).
|
|
27
26
|
bit lane diff to => diff between the current lane (or default-lane when in scope) and "to" lane.
|
|
28
|
-
bit lane diff from to => diff between "from" lane and "to" lane
|
|
29
|
-
`;
|
|
27
|
+
bit lane diff from to => diff between "from" lane and "to" lane.`;
|
|
30
28
|
this.alias = '';
|
|
31
29
|
this.options = [];
|
|
32
30
|
this.loader = true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lane-diff.cmd.js","sourceRoot":"","sources":["../lane-diff.cmd.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAGA,kDAA0B;AAC1B,iGAAgG;AAChG,+DAA0D;AAE1D,MAAa,WAAW;
|
|
1
|
+
{"version":3,"file":"lane-diff.cmd.js","sourceRoot":"","sources":["../lane-diff.cmd.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAGA,kDAA0B;AAC1B,iGAAgG;AAChG,+DAA0D;AAE1D,MAAa,WAAW;IActB,YAAoB,SAAoB,EAAU,KAAgB;QAA9C,cAAS,GAAT,SAAS,CAAW;QAAU,UAAK,GAAL,KAAK,CAAW;QAblE,SAAI,GAAG,kBAAkB,CAAC;QAC1B,gBAAW,GAAG,yBAAyB,CAAC;QACxC,wBAAmB,GAAG;;iEAEyC,CAAC;QAChE,UAAK,GAAG,EAAE,CAAC;QACX,YAAO,GAAG,EAAoB,CAAC;QAC/B,WAAM,GAAG,IAAI,CAAC;QACd,YAAO,GAAG,IAAI,CAAC;QACf,cAAS,GAAG,IAAI,CAAC;QACjB,aAAQ,GAAG,IAAI,CAAC;QAChB,kBAAa,GAAG,IAAI,CAAC;IAEgD,CAAC;IAEhE,MAAM,CAAC,CAAC,MAAM,GAAG,EAAE,CAAa;;YACpC,MAAM,iBAAiB,GAAG,IAAI,uCAAiB,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC;YAC5E,MAAM,EAAE,aAAa,EAAE,QAAQ,EAAE,UAAU,EAAE,GAAG,MAAM,iBAAiB,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;YACzF,MAAM,cAAc,GAAG,IAAA,mCAAiB,EAAC,aAAa,CAAC,CAAC;YACxD,MAAM,cAAc,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,eAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACvE,MAAM,aAAa,GAAG,+CAA+C,eAAK,CAAC,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC;YACnG,MAAM,WAAW,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,eAAK,CAAC,OAAO,CAAC,aAAa,CAAC,KAAK,cAAc,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YAChG,OAAO,GAAG,cAAc,KAAK,WAAW,EAAE,CAAC;QAC7C,CAAC;KAAA;CACF;AAzBD,kCAyBC"}
|
package/lane-diff.cmd.ts
CHANGED
|
@@ -7,12 +7,10 @@ import { LaneDiffGenerator } from './lane-diff-generator';
|
|
|
7
7
|
|
|
8
8
|
export class LaneDiffCmd implements Command {
|
|
9
9
|
name = 'diff [values...]';
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
bit lane diff => diff between the current lane and default lane. (only inside workspace).
|
|
10
|
+
description = `show diff between lanes`;
|
|
11
|
+
extendedDescription = `bit lane diff => diff between the current lane and default lane. (only inside workspace).
|
|
13
12
|
bit lane diff to => diff between the current lane (or default-lane when in scope) and "to" lane.
|
|
14
|
-
bit lane diff from to => diff between "from" lane and "to" lane
|
|
15
|
-
`;
|
|
13
|
+
bit lane diff from to => diff between "from" lane and "to" lane.`;
|
|
16
14
|
alias = '';
|
|
17
15
|
options = [] as CommandOptions;
|
|
18
16
|
loader = true;
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/lanes.modules.diff",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.108",
|
|
4
4
|
"homepage": "https://bit.dev/teambit/lanes/modules/diff",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.lanes",
|
|
8
8
|
"name": "modules/diff",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.108"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"chalk": "
|
|
12
|
+
"chalk": "4.1.2",
|
|
13
13
|
"@teambit/legacy-bit-id": "0.0.399"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
File without changes
|
package/tsconfig.json
CHANGED
|
Binary file
|