@deot/dev-updater 2.4.0 → 2.6.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.
package/dist/index.cjs CHANGED
@@ -228,6 +228,7 @@ const update = (commandOptions) => {
228
228
  return new Update(commandOptions);
229
229
  };
230
230
 
231
+ process.setMaxListeners(100);
231
232
  const run = (options) => devShared.Utils.autoCatch(async () => {
232
233
  options = {
233
234
  dryRun: true,
@@ -205,6 +205,7 @@ const update = (commandOptions) => {
205
205
  return new Update(commandOptions);
206
206
  };
207
207
 
208
+ process.setMaxListeners(100);
208
209
  const run = (options) => Utils.autoCatch(async () => {
209
210
  options = {
210
211
  dryRun: true,
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@deot/dev-updater",
3
- "version": "2.4.0",
3
+ "version": "2.6.0",
4
4
  "type": "module",
5
- "main": "dist/index.es.js",
5
+ "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
8
8
  ".": {
9
- "import": "./dist/index.es.js",
9
+ "import": "./dist/index.js",
10
10
  "require": "./dist/index.cjs",
11
11
  "types": "./dist/index.d.ts"
12
12
  }
@@ -19,7 +19,7 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@deot/dev-shared": "^2.4.0",
22
+ "@deot/dev-shared": "^2.6.0",
23
23
  "chalk": "^5.3.0",
24
24
  "fs-extra": "^11.1.1",
25
25
  "ora": "^7.0.1",