Skip to content

Commit 3c2393b

Browse files
authored
Updating minimum node version and updating json asserts keyword (#3592)
1 parent 97df406 commit 3c2393b

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "CLI implementation of the GitLab API.",
55
"license": "MIT",
66
"engines": {
7-
"node": ">=18.0.0"
7+
"node": ">=18.20.0"
88
},
99
"repository": {
1010
"type": "git",

packages/cli/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Chalk from 'chalk';
22
import Sywac from 'sywac';
33
import * as Gitbeaker from '@gitbeaker/rest';
4-
import API_MAP from '@gitbeaker/core/map.json' assert { type: 'json' }; // eslint-disable-line import/no-unresolved
4+
import API_MAP from '@gitbeaker/core/map.json' with { type: 'json' }; // eslint-disable-line import/no-unresolved
55
import {
66
buildArgumentObjects,
77
getDisplayConfig,

packages/cli/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4+
"module": "esnext",
45
"paths": {
56
"@gitbeaker/core/map.json": ["../core/dist/map.json"],
67
"@gitbeaker/*": ["../*/src"],

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Core API implementation of the GitLab API",
55
"license": "MIT",
66
"engines": {
7-
"node": ">=18.0.0"
7+
"node": ">=18.20.0"
88
},
99
"repository": {
1010
"type": "git",

packages/requester-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Utility functions for requester implementatons used in @gitbeaker",
55
"license": "MIT",
66
"engines": {
7-
"node": ">=18.0.0"
7+
"node": ">=18.20.0"
88
},
99
"repository": {
1010
"type": "git",

packages/rest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Cross Platform implementation of the GitLab API",
55
"license": "MIT",
66
"engines": {
7-
"node": ">=18.0.0"
7+
"node": ">=18.20.0"
88
},
99
"repository": {
1010
"type": "git",

0 commit comments

Comments
 (0)