@cenk1cenk2/oclif-common 6.2.2 → 6.2.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/dist/index.d.ts CHANGED
@@ -255,12 +255,12 @@ declare class LockerService<LockFile extends LockableData = LockableData> {
255
255
  constructor(logger: LoggerService, fs: FileSystemService, parser: ParserService, options: LockerServiceOptions);
256
256
  hasLock(): boolean;
257
257
  hasUnlock(): boolean;
258
- addLock<T extends LockableData = LockableData>(...data: LockData<T>[]): void;
258
+ addLock<T extends LockableData = LockFile>(...data: LockData<T>[]): void;
259
259
  addUnlock(...data: UnlockData[]): void;
260
260
  lockAll(): Promise<void>;
261
261
  unlockAll(): Promise<void>;
262
262
  all(): Promise<void>;
263
- lock<T extends LockableData = LockableData>(...data: LockData<T>[]): Promise<void>;
263
+ lock<T extends LockableData = LockFile>(...data: LockData<T>[]): Promise<void>;
264
264
  unlock(...data: UnlockData[]): Promise<void>;
265
265
  read(): Promise<LockFile>;
266
266
  tryRead(): Promise<LockFile | undefined>;
package/dist/index.js CHANGED
@@ -1421,7 +1421,9 @@ var LogoService = (_a15 = class {
1421
1421
  if (this.shouldBeSilent()) {
1422
1422
  return;
1423
1423
  }
1424
- this.write(this.cs.oclif.name, "v" + this.cs.oclif.version);
1424
+ const logo = this.cs.oclif.name + " v" + this.cs.oclif.version;
1425
+ this.write(logo);
1426
+ this.write("-".repeat(logo.length));
1425
1427
  };
1426
1428
  }
1427
1429
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cenk1cenk2/oclif-common",
3
- "version": "6.2.2",
3
+ "version": "6.2.4",
4
4
  "description": "Oclif common package for oclif2 projects.",
5
5
  "repository": "https://gitlab.kilic.dev/libraries/oclif-tools",
6
6
  "type": "module",
@@ -61,8 +61,8 @@
61
61
  }
62
62
  },
63
63
  "dependencies": {
64
- "@nestjs/common": "^10.2.7",
65
- "@nestjs/core": "^10.2.7",
64
+ "@nestjs/common": "^10.2.8",
65
+ "@nestjs/core": "^10.2.8",
66
66
  "deepmerge": "^4.3.1",
67
67
  "object-path-immutable": "^4.1.2",
68
68
  "reflect-metadata": "^0.1.13",
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "devDependencies": {
72
72
  "@listr2/manager": "^1.0.2",
73
- "@oclif/core": "^3.10.0",
73
+ "@oclif/core": "^3.10.1",
74
74
  "@types/fs-extra": "^11.0.3",
75
75
  "@types/through": "^0.0.32",
76
76
  "@types/update-notifier": "^6.0.6",
@@ -81,6 +81,6 @@
81
81
  "fs-extra": "^11.1.1",
82
82
  "listr2": "^7.0.2",
83
83
  "source-map-support": "^0.5.21",
84
- "yaml": "^2.3.3"
84
+ "yaml": "^2.3.4"
85
85
  }
86
86
  }