@adonisjs/assembler 5.3.8 → 5.3.9
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.
|
@@ -201,7 +201,7 @@ class AssetsBundler extends emittery_1.default {
|
|
|
201
201
|
*/
|
|
202
202
|
let customPort = this.findCustomPort();
|
|
203
203
|
if (!customPort) {
|
|
204
|
-
const randomPort = await (0, get_port_1.default)({ port: 8080 });
|
|
204
|
+
const randomPort = await (0, get_port_1.default)({ port: 8080, host: 'localhost' });
|
|
205
205
|
customPort = String(randomPort);
|
|
206
206
|
this.encoreArgs.push('--port', customPort);
|
|
207
207
|
}
|
|
@@ -14,13 +14,15 @@ export default class {{ filename }} extends BaseCommand {
|
|
|
14
14
|
public static settings = {
|
|
15
15
|
/**
|
|
16
16
|
* Set the following value to true, if you want to load the application
|
|
17
|
-
* before running the command
|
|
17
|
+
* before running the command. Don't forget to call `node ace generate:manifest`
|
|
18
|
+
* afterwards.
|
|
18
19
|
*/
|
|
19
20
|
loadApp: false,
|
|
20
21
|
|
|
21
22
|
/**
|
|
22
23
|
* Set the following value to true, if you want this command to keep running until
|
|
23
|
-
* you manually decide to exit the process
|
|
24
|
+
* you manually decide to exit the process. Don't forget to call
|
|
25
|
+
* `node ace generate:manifest` afterwards.
|
|
24
26
|
*/
|
|
25
27
|
stayAlive: false,
|
|
26
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adonisjs/assembler",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.9",
|
|
4
4
|
"description": "Core commands to compiler and build AdonisJs project",
|
|
5
5
|
"main": "build/ace-manifest.json",
|
|
6
6
|
"files": [
|
|
@@ -44,24 +44,24 @@
|
|
|
44
44
|
"homepage": "https://github.com/adonisjs/assembler#readme",
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@adonisjs/ace": "^11.0.5",
|
|
47
|
-
"@adonisjs/core": "^5.
|
|
47
|
+
"@adonisjs/core": "^5.4.2",
|
|
48
48
|
"@adonisjs/mrm-preset": "^4.1.2",
|
|
49
49
|
"@poppinss/dev-utils": "^1.1.5",
|
|
50
|
-
"@types/node": "^16.11.
|
|
50
|
+
"@types/node": "^16.11.13",
|
|
51
51
|
"copyfiles": "^2.4.1",
|
|
52
52
|
"cross-env": "^7.0.3",
|
|
53
53
|
"del-cli": "^4.0.1",
|
|
54
|
-
"eslint": "^8.1
|
|
54
|
+
"eslint": "^8.4.1",
|
|
55
55
|
"eslint-config-prettier": "^8.3.0",
|
|
56
|
-
"eslint-plugin-adonis": "^2.
|
|
56
|
+
"eslint-plugin-adonis": "^2.1.0",
|
|
57
57
|
"eslint-plugin-prettier": "^4.0.0",
|
|
58
58
|
"github-label-sync": "^2.0.2",
|
|
59
59
|
"husky": "^7.0.4",
|
|
60
60
|
"japa": "^4.0.0",
|
|
61
61
|
"mrm": "^3.0.10",
|
|
62
|
-
"np": "^7.
|
|
63
|
-
"prettier": "^2.
|
|
64
|
-
"typescript": "^4.
|
|
62
|
+
"np": "^7.6.0",
|
|
63
|
+
"prettier": "^2.5.1",
|
|
64
|
+
"typescript": "^4.5.4"
|
|
65
65
|
},
|
|
66
66
|
"nyc": {
|
|
67
67
|
"exclude": [
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"@adonisjs/env": "^3.0.5",
|
|
91
91
|
"@adonisjs/ioc-transformer": "^2.3.2",
|
|
92
92
|
"@adonisjs/require-ts": "^2.0.8",
|
|
93
|
-
"@adonisjs/sink": "^5.
|
|
93
|
+
"@adonisjs/sink": "^5.2.0",
|
|
94
94
|
"@poppinss/chokidar-ts": "^3.3.2",
|
|
95
95
|
"@poppinss/cliui": "^2.2.5",
|
|
96
96
|
"@poppinss/utils": "^3.3.1",
|