@cenk1cenk2/oclif-common 5.0.8 → 6.0.0

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 (3) hide show
  1. package/dist/index.d.ts +212 -188
  2. package/dist/index.js +1168 -714
  3. package/package.json +22 -18
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@cenk1cenk2/oclif-common",
3
- "version": "5.0.8",
3
+ "version": "6.0.0",
4
4
  "description": "Oclif common package for oclif2 projects.",
5
5
  "repository": "https://gitlab.kilic.dev/libraries/oclif-tools",
6
+ "type": "module",
6
7
  "author": {
7
8
  "name": "Cenk Kilic",
8
9
  "email": "cenk@kilic.dev",
@@ -23,28 +24,30 @@
23
24
  "scripts": {
24
25
  "build": "tsup-node",
25
26
  "dev:start": "tsup-node --watch",
26
- "format": "prettier --write src/ --loglevel warn && eslint --ext .ts,.js,.tsx,.jsx --fix src/",
27
+ "format": "prettier --write src/ --log-level warn && eslint --ext .ts,.js,.tsx,.jsx --fix src/",
27
28
  "lint": "eslint --ext .ts,.js,.tsx,.jsx src/",
28
29
  "docs:api": "typedoc --options .typedoc.json --hideInPageTOC --hideBreadcrumbs"
29
30
  },
30
31
  "lint-staged": {
31
32
  "*.{ts,js,tsx,jsx}": [
32
- "prettier --loglevel warn --write",
33
+ "prettier --log-level warn --write",
33
34
  "eslint --fix"
34
35
  ],
35
36
  "*.{json,md}": [
36
- "prettier --loglevel warn --write"
37
+ "prettier --log-level warn --write"
37
38
  ]
38
39
  },
39
40
  "peerDependencies": {
41
+ "@listr2/manager": ">= 1",
40
42
  "@oclif/core": ">= 1",
41
43
  "class-transformer": ">= 0.5.0",
42
44
  "class-validator": ">= 0.14.0",
43
45
  "enquirer": ">= 2",
44
- "execa": ">= 5 < 8",
46
+ "execa": ">= 5 < 9",
45
47
  "fs-extra": ">= 10",
46
- "listr2": ">= 6",
47
- "update-notifier": ">= 5"
48
+ "listr2": ">= 7",
49
+ "update-notifier": ">= 5",
50
+ "yaml": ">= 2"
48
51
  },
49
52
  "peerDependenciesMeta": {
50
53
  "execa": {
@@ -55,24 +58,25 @@
55
58
  }
56
59
  },
57
60
  "dependencies": {
61
+ "@nestjs/common": "^10.2.7",
62
+ "@nestjs/core": "^10.2.7",
58
63
  "deepmerge": "^4.3.1",
59
64
  "object-path-immutable": "^4.1.2",
60
65
  "reflect-metadata": "^0.1.13",
61
- "through": "^2.3.8",
62
- "update-notifier": "^6.0.2",
63
- "winston": "^3.10.0",
64
- "yaml": "^2.3.1"
66
+ "winston": "^3.11.0"
65
67
  },
66
68
  "devDependencies": {
67
- "@oclif/core": "^2.8.11",
68
- "@types/fs-extra": "^11.0.1",
69
- "@types/through": "^0.0.30",
70
- "@types/update-notifier": "^6.0.4",
69
+ "@listr2/manager": "^1.0.2",
70
+ "@oclif/core": "^3.9.2",
71
+ "@types/fs-extra": "^11.0.3",
72
+ "@types/through": "^0.0.32",
73
+ "@types/update-notifier": "^6.0.6",
71
74
  "class-transformer": "^0.5.1",
72
75
  "class-validator": "^0.14.0",
73
- "enquirer": "^2.3.6",
74
- "execa": "^7.1.1",
76
+ "enquirer": "^2.4.1",
77
+ "execa": "^8.0.1",
75
78
  "fs-extra": "^11.1.1",
76
- "listr2": "^6.6.0"
79
+ "listr2": "^7.0.2",
80
+ "yaml": "^2.3.3"
77
81
  }
78
82
  }