@adonisjs/repl 4.1.0 → 4.1.1
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/build/index.js +2 -2
- package/build/src/types.d.ts +1 -1
- package/package.json +13 -14
package/build/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/repl.ts
|
|
2
2
|
import stringWidth from "string-width";
|
|
3
3
|
import useColors from "@poppinss/colors";
|
|
4
|
-
import { inspect, promisify as utilPromisify } from "
|
|
5
|
-
import { Recoverable, start as startRepl } from "
|
|
4
|
+
import { inspect, promisify as utilPromisify } from "util";
|
|
5
|
+
import { Recoverable, start as startRepl } from "repl";
|
|
6
6
|
var GLOBAL_NODE_PROPERTIES = [
|
|
7
7
|
"performance",
|
|
8
8
|
"global",
|
package/build/src/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adonisjs/repl",
|
|
3
3
|
"description": "REPL for AdonisJS",
|
|
4
|
-
"version": "4.1.
|
|
4
|
+
"version": "4.1.1",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.16.0"
|
|
7
7
|
},
|
|
@@ -30,22 +30,21 @@
|
|
|
30
30
|
"release": "release-it"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@adonisjs/eslint-config": "^
|
|
34
|
-
"@adonisjs/prettier-config": "^1.4.
|
|
35
|
-
"@adonisjs/tsconfig": "^
|
|
36
|
-
"@
|
|
37
|
-
"@
|
|
38
|
-
"@types/node": "^
|
|
33
|
+
"@adonisjs/eslint-config": "^3.0.0-next.1",
|
|
34
|
+
"@adonisjs/prettier-config": "^1.4.5",
|
|
35
|
+
"@adonisjs/tsconfig": "^2.0.0-next.0",
|
|
36
|
+
"@poppinss/ts-exec": "^1.4.1",
|
|
37
|
+
"@release-it/conventional-changelog": "^10.0.1",
|
|
38
|
+
"@types/node": "^24.3.0",
|
|
39
39
|
"del-cli": "^6.0.0",
|
|
40
|
-
"eslint": "^9.
|
|
41
|
-
"prettier": "^3.
|
|
42
|
-
"release-it": "^
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"typescript": "^5.7.3"
|
|
40
|
+
"eslint": "^9.33.0",
|
|
41
|
+
"prettier": "^3.6.2",
|
|
42
|
+
"release-it": "^19.0.4",
|
|
43
|
+
"tsup": "^8.5.0",
|
|
44
|
+
"typescript": "^5.9.2"
|
|
46
45
|
},
|
|
47
46
|
"dependencies": {
|
|
48
|
-
"@poppinss/colors": "^4.1.
|
|
47
|
+
"@poppinss/colors": "^4.1.5",
|
|
49
48
|
"string-width": "^7.2.0"
|
|
50
49
|
},
|
|
51
50
|
"homepage": "https://github.com/adonisjs/repl#readme",
|