@gitbeaker/cli 40.1.1 → 40.1.3

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
@@ -223,6 +223,7 @@ GITBEAKER_CAMELIZE=true
223
223
  <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
224
  <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
225
  <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>
226
+ <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
227
  </tr>
227
228
  </p>
228
229
 
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.1",
3
+ "version": "40.1.3",
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.1",
42
- "@gitbeaker/rest": "^40.1.1",
41
+ "@gitbeaker/core": "^40.1.3",
42
+ "@gitbeaker/rest": "^40.1.3",
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": "8cebefc35e4a19542caeadbb47670a7c3d509cb0"
51
+ "gitHead": "a7ffd3a6b2a10dc0cb947b4824a51227ce1fae83"
52
52
  }