Skip to content

Commit 8321a4b

Browse files
authored
Merge pull request #131 from Service-Soft/update-packages
updated version
2 parents 708c2e2 + 023fb1c commit 8321a4b

5 files changed

Lines changed: 14 additions & 12 deletions

File tree

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monux-cli",
3-
"version": "2.5.5",
3+
"version": "2.5.6",
44
"license": "MIT",
55
"main": "index.js",
66
"engines": {
@@ -59,7 +59,7 @@
5959
"@types/figlet": "^1.7.0",
6060
"@types/js-yaml": "^4.0.9",
6161
"eslint": "^9.34.0",
62-
"eslint-config-service-soft": "^2.1.0",
62+
"eslint-config-service-soft": "^2.1.2",
6363
"jest": "^30.0.5",
6464
"ngx-material-navigation": "^20.0.0",
6565
"ts-jest": "^29.4.1"

src/commands/add/add-zibri/add-zibri.command.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { ModuleKind } from 'typescript';
2+
13
import { APPS_DIRECTORY_NAME, BASE_TS_CONFIG_FILE_NAME, DOCKER_FILE_NAME, ENVIRONMENT_MODEL_TS_FILE_NAME, ESLINT_CONFIG_FILE_NAME, PROD_DOCKER_COMPOSE_FILE_NAME } from '../../../constants';
24
import { DbType, DbUtilities } from '../../../db';
35
import { DockerUtilities } from '../../../docker';
@@ -317,7 +319,7 @@ export class AddZibriCommand extends BaseAddCommand<AddZibriConfiguration> {
317319
skipLibCheck: undefined,
318320
noImplicitAny: undefined,
319321
noFallthroughCasesInSwitch: undefined,
320-
module: undefined,
322+
module: 'commonjs' as unknown as ModuleKind,
321323
moduleResolution: undefined
322324
}
323325
}

src/tsconfig/tsconfig.utilities.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { ModuleKind, ModuleResolutionKind, ScriptTarget } from 'typescript';
22

3+
import { BASE_TS_CONFIG_FILE_NAME, TS_CONFIG_FILE_NAME } from '../constants';
34
import { CPUtilities, FsUtilities, JsonUtilities } from '../encapsulation';
5+
import { getPath, mergeDeep, Path } from '../utilities';
46
import { WorkspaceProject, WorkspaceUtilities } from '../workspace';
57
import { TsConfig } from './tsconfig.model';
6-
import { BASE_TS_CONFIG_FILE_NAME, TS_CONFIG_FILE_NAME } from '../constants';
7-
import { getPath, mergeDeep, Path } from '../utilities';
88

99
/**
1010
* Utilities for tsconfig.

src/zibri/zibri.utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type ZibriCliOptions<T extends ZibriCliCommands>
3737
*/
3838
export abstract class ZibriUtilities {
3939

40-
private static readonly CLI_VERSION: string = '2.1.4';
40+
private static readonly CLI_VERSION: string = '2.1.5';
4141

4242
/**
4343
* Runs a zibri cli command inside the provided directory.

0 commit comments

Comments
 (0)