@cenk1cenk2/oclif-common 6.3.21 → 6.3.23

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -3
  2. package/package.json +8 -8
package/dist/index.js CHANGED
@@ -832,9 +832,7 @@ var _ConfigService = class _ConfigService {
832
832
  const variable = [
833
833
  {
834
834
  key: location,
835
- // eslint-disable-next-line no-underscore-dangle
836
835
  env: value[ConfigEnvKeys.NAME],
837
- // eslint-disable-next-line no-underscore-dangle
838
836
  parser: value[ConfigEnvKeys.PARSER],
839
837
  extensions
840
838
  }
@@ -1385,7 +1383,7 @@ var _LogoService = class _LogoService {
1385
1383
  this.generator = moduleRef.get(TOKEN_LOGO_GENERATOR, {
1386
1384
  strict: false
1387
1385
  });
1388
- } catch (e) {
1386
+ } catch {
1389
1387
  this.generator = function() {
1390
1388
  if (this.shouldBeSilent()) {
1391
1389
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cenk1cenk2/oclif-common",
3
- "version": "6.3.21",
3
+ "version": "6.3.23",
4
4
  "description": "Oclif common package for oclif2 projects.",
5
5
  "repository": "https://gitlab.kilic.dev/libraries/oclif-tools",
6
6
  "type": "module",
@@ -33,8 +33,8 @@
33
33
  "scripts": {
34
34
  "build": "tsup-node",
35
35
  "dev:start": "tsup-node --watch",
36
- "format": "prettier --write src/ --log-level warn && eslint --ext .ts,.js,.tsx,.jsx --fix src/",
37
- "lint": "eslint --ext .ts,.js,.tsx,.jsx src/",
36
+ "format": "prettier --write src/ --log-level warn && eslint --fix src/",
37
+ "lint": "eslint src/",
38
38
  "docs:api": "typedoc --options .typedoc.json --hideInPageTOC --hideBreadcrumbs"
39
39
  },
40
40
  "lint-staged": {
@@ -66,16 +66,16 @@
66
66
  }
67
67
  },
68
68
  "dependencies": {
69
- "@nestjs/common": "^10.4.5",
70
- "@nestjs/core": "^10.4.5",
69
+ "@nestjs/common": "^10.4.7",
70
+ "@nestjs/core": "^10.4.7",
71
71
  "deepmerge": "^4.3.1",
72
72
  "object-path-immutable": "^4.1.2",
73
73
  "reflect-metadata": "^0.2.1",
74
- "winston": "^3.15.0"
74
+ "winston": "^3.16.0"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@listr2/manager": "^2.0.13",
78
- "@oclif/core": "^4.0.29",
78
+ "@oclif/core": "^4.0.33",
79
79
  "@types/fs-extra": "^11.0.4",
80
80
  "@types/through": "^0.0.33",
81
81
  "@types/update-notifier": "^6.0.8",
@@ -85,6 +85,6 @@
85
85
  "fs-extra": "^11.2.0",
86
86
  "listr2": "^8.2.5",
87
87
  "source-map-support": "^0.5.21",
88
- "yaml": "^2.6.0"
88
+ "yaml": "^2.6.1"
89
89
  }
90
90
  }