@gitbeaker/cli 40.1.2 → 40.1.4

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/README.md CHANGED
@@ -1,12 +1,14 @@
1
1
  <div align="center">
2
2
  <br>
3
3
  <br>
4
- <img alt="gitbeaker" src="https://raw.githubusercontent.com/jdalrymple/gitbeaker/main/.github/ASSETS/header.svg">
4
+ <img alt="gitbeaker" src="../../.github/ASSETS/header.svg">
5
5
  <br>
6
6
  <br>
7
7
  <br>
8
8
  </div>
9
9
 
10
+ <hr>
11
+
10
12
  <div align="center">
11
13
  <p>
12
14
  <sup>
@@ -19,9 +21,14 @@
19
21
  <br>
20
22
 
21
23
  <a href="https://wearecws.com/">
22
- <img src="https://wearecws.com/images/brand/cws-logo.svg" width="210">
24
+ <img src="../../.github/ASSETS/cws.svg" width="180">
23
25
  </a>
24
-
26
+ <br>
27
+ <br>
28
+ <a href="http://coderabbit.ai">
29
+ <img src="../../.github/ASSETS/coderabbit.png" width="180">
30
+ </a>
31
+ <br>
25
32
  <br>
26
33
  <hr>
27
34
  </div>
@@ -223,6 +230,7 @@ GITBEAKER_CAMELIZE=true
223
230
  <td align="center" valign="top" width="0.33%"><a href="https://github.com/vitamindck"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/10766587?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="DK"/></td>
224
231
  <td align="center" valign="top" width="0.33%"><a href="http://www.koenbrouwer.com/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/3260168?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Koen Brouwer"/></td>
225
232
  <td align="center" valign="top" width="0.33%"><a href="https://scrumplex.net/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/11587657?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Sefa Eyeoglu"/></td>
233
+ <td align="center" valign="top" width="0.33%"><a href="https://github.com/crazfb"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/157008803?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Carmi Raz"/></td>
226
234
  </tr>
227
235
  </p>
228
236
 
package/dist/index.mjs CHANGED
@@ -1,10 +1,13 @@
1
1
  #!/usr/bin/env node
2
- import Chalk from 'chalk';
3
- import Sywac from 'sywac';
4
- import * as Gitbeaker from '@gitbeaker/rest';
5
- import API_MAP from '@gitbeaker/core/map.json' assert { type: 'json' };
6
- import { decamelize, depascalize, camelize } from 'xcase';
7
2
 
3
+ // src/cli.ts
4
+ import Chalk from "chalk";
5
+ import Sywac from "sywac";
6
+ import * as Gitbeaker from "@gitbeaker/rest";
7
+ import API_MAP from "@gitbeaker/core/map.json" with { type: "json" };
8
+
9
+ // src/utils.ts
10
+ import { camelize, decamelize, depascalize } from "xcase";
8
11
  function param(value) {
9
12
  let cleaned = value;
10
13
  const exceptions = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbeaker/cli",
3
- "version": "40.1.2",
3
+ "version": "40.1.4",
4
4
  "description": "CLI implementation of the GitLab API.",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -31,15 +31,15 @@
31
31
  "dist"
32
32
  ],
33
33
  "scripts": {
34
- "build": "tsup src/index.ts --format esm --treeshake --target esnext",
34
+ "build": "tsup src/index.ts --format esm --target esnext",
35
35
  "test:unit": "jest --maxWorkers=50% test/unit",
36
36
  "test:e2e": "jest --maxWorkers=50% test/e2e",
37
37
  "lint": "eslint '**/{src,test,scripts}/**/*.ts'",
38
38
  "lint:fix": "yarn lint --fix"
39
39
  },
40
40
  "dependencies": {
41
- "@gitbeaker/core": "^40.1.2",
42
- "@gitbeaker/rest": "^40.1.2",
41
+ "@gitbeaker/core": "^40.1.4",
42
+ "@gitbeaker/rest": "^40.1.4",
43
43
  "chalk": "4.1.2",
44
44
  "sywac": "^1.3.0",
45
45
  "xcase": "^2.0.1"
@@ -48,5 +48,5 @@
48
48
  "tsup": "^8.1.0",
49
49
  "typescript": "^5.5.3"
50
50
  },
51
- "gitHead": "e9ca9e97f85e4b5bbc9aaeb240bfefe01569478a"
51
+ "gitHead": "6e43b254784164942ebd9e261009963ea96d854c"
52
52
  }