@teambit/ci 1.0.106 → 1.0.107

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/ci.cmd.d.ts CHANGED
@@ -6,6 +6,7 @@ export declare class CiCmd implements Command {
6
6
  private logger;
7
7
  name: string;
8
8
  description: string;
9
+ extendedDescription: string;
9
10
  group: string;
10
11
  options: CommandOptions;
11
12
  commands: Command[];
package/dist/ci.cmd.js CHANGED
@@ -12,7 +12,8 @@ class CiCmd {
12
12
  this.workspace = workspace;
13
13
  this.logger = logger;
14
14
  _defineProperty(this, "name", 'ci <sub-command>');
15
- _defineProperty(this, "description", 'CI commands');
15
+ _defineProperty(this, "description", 'continuous integration commands for automated workflows');
16
+ _defineProperty(this, "extendedDescription", 'provides commands designed for use in CI/CD pipelines with Git workflows to automate component development tasks like verification, pull request handling, and deployment preparation.');
16
17
  _defineProperty(this, "group", 'collaborate');
17
18
  _defineProperty(this, "options", []);
18
19
  _defineProperty(this, "commands", []);
@@ -1 +1 @@
1
- {"version":3,"names":["CiCmd","constructor","workspace","logger","_defineProperty","report","code","data","exports"],"sources":["ci.cmd.ts"],"sourcesContent":["import type { Command, CommandOptions } from '@teambit/cli';\nimport type { Logger } from '@teambit/logger';\nimport type { Workspace } from '@teambit/workspace';\n\nexport class CiCmd implements Command {\n name = 'ci <sub-command>';\n description = 'CI commands';\n group = 'collaborate';\n\n options: CommandOptions = [];\n commands: Command[] = [];\n\n constructor(\n private workspace: Workspace,\n private logger: Logger\n ) {}\n\n async report() {\n return { code: 1, data: '[ci] not implemented' };\n }\n}\n"],"mappings":";;;;;;;;;AAIO,MAAMA,KAAK,CAAoB;EAQpCC,WAAWA,CACDC,SAAoB,EACpBC,MAAc,EACtB;IAAA,KAFQD,SAAoB,GAApBA,SAAoB;IAAA,KACpBC,MAAc,GAAdA,MAAc;IAAAC,eAAA,eATjB,kBAAkB;IAAAA,eAAA,sBACX,aAAa;IAAAA,eAAA,gBACnB,aAAa;IAAAA,eAAA,kBAEK,EAAE;IAAAA,eAAA,mBACN,EAAE;EAKrB;EAEH,MAAMC,MAAMA,CAAA,EAAG;IACb,OAAO;MAAEC,IAAI,EAAE,CAAC;MAAEC,IAAI,EAAE;IAAuB,CAAC;EAClD;AACF;AAACC,OAAA,CAAAR,KAAA,GAAAA,KAAA","ignoreList":[]}
1
+ {"version":3,"names":["CiCmd","constructor","workspace","logger","_defineProperty","report","code","data","exports"],"sources":["ci.cmd.ts"],"sourcesContent":["import type { Command, CommandOptions } from '@teambit/cli';\nimport type { Logger } from '@teambit/logger';\nimport type { Workspace } from '@teambit/workspace';\n\nexport class CiCmd implements Command {\n name = 'ci <sub-command>';\n description = 'continuous integration commands for automated workflows';\n extendedDescription =\n 'provides commands designed for use in CI/CD pipelines with Git workflows to automate component development tasks like verification, pull request handling, and deployment preparation.';\n group = 'collaborate';\n\n options: CommandOptions = [];\n commands: Command[] = [];\n\n constructor(\n private workspace: Workspace,\n private logger: Logger\n ) {}\n\n async report() {\n return { code: 1, data: '[ci] not implemented' };\n }\n}\n"],"mappings":";;;;;;;;;AAIO,MAAMA,KAAK,CAAoB;EAUpCC,WAAWA,CACDC,SAAoB,EACpBC,MAAc,EACtB;IAAA,KAFQD,SAAoB,GAApBA,SAAoB;IAAA,KACpBC,MAAc,GAAdA,MAAc;IAAAC,eAAA,eAXjB,kBAAkB;IAAAA,eAAA,sBACX,yDAAyD;IAAAA,eAAA,8BAErE,wLAAwL;IAAAA,eAAA,gBAClL,aAAa;IAAAA,eAAA,kBAEK,EAAE;IAAAA,eAAA,mBACN,EAAE;EAKrB;EAEH,MAAMC,MAAMA,CAAA,EAAG;IACb,OAAO;MAAEC,IAAI,EAAE,CAAC;MAAEC,IAAI,EAAE;IAAuB,CAAC;EAClD;AACF;AAACC,OAAA,CAAAR,KAAA,GAAAA,KAAA","ignoreList":[]}
@@ -1,5 +1,5 @@
1
1
  ;
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.git_ci@1.0.106/dist/ci.docs.mdx';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.git_ci@1.0.107/dist/ci.docs.mdx';
3
3
 
4
4
  export const compositions = [];
5
5
  export const overview = [overview_0];
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/ci",
3
- "version": "1.0.106",
3
+ "version": "1.0.107",
4
4
  "homepage": "https://bit.cloud/teambit/git/ci",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.git",
8
8
  "name": "ci",
9
- "version": "1.0.106"
9
+ "version": "1.0.107"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "4.1.2",
@@ -14,19 +14,19 @@
14
14
  "semver": "7.7.1",
15
15
  "simple-git": "^3.28.0",
16
16
  "@teambit/harmony": "0.4.7",
17
- "@teambit/cli": "0.0.1272",
18
- "@teambit/logger": "0.0.1365",
19
17
  "@teambit/component-id": "1.2.4",
20
- "@teambit/component.modules.merge-helper": "0.0.13",
21
18
  "@teambit/bit-error": "0.0.404",
22
- "@teambit/workspace": "1.0.750",
23
- "@teambit/builder": "1.0.750",
24
- "@teambit/checkout": "1.0.750",
25
- "@teambit/export": "1.0.750",
26
- "@teambit/importer": "1.0.750",
27
- "@teambit/lanes": "1.0.751",
28
- "@teambit/snapping": "1.0.750",
29
- "@teambit/status": "1.0.752"
19
+ "@teambit/cli": "0.0.1273",
20
+ "@teambit/logger": "0.0.1366",
21
+ "@teambit/workspace": "1.0.751",
22
+ "@teambit/builder": "1.0.751",
23
+ "@teambit/checkout": "1.0.751",
24
+ "@teambit/component.modules.merge-helper": "0.0.14",
25
+ "@teambit/export": "1.0.751",
26
+ "@teambit/importer": "1.0.751",
27
+ "@teambit/lanes": "1.0.752",
28
+ "@teambit/snapping": "1.0.751",
29
+ "@teambit/status": "1.0.753"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/semver": "7.5.8",