@linktr.ee/create-link-app 1.1.5 → 1.1.6
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/README.md +2 -2
- package/dist/commands/dev.js +1 -0
- package/oclif.manifest.json +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,8 +98,8 @@ USAGE
|
|
|
98
98
|
|
|
99
99
|
FLAGS
|
|
100
100
|
-p, --port=<value> [default: 3000] Development server listening port
|
|
101
|
-
--allowedHosts=<value> Allowed hosts for development server. You can set a single host or use "all" to
|
|
102
|
-
hosts
|
|
101
|
+
--allowedHosts=<value> [default: all] Allowed hosts for development server. You can set a single host or use "all" to
|
|
102
|
+
allow all hosts
|
|
103
103
|
--host=<value> [default: localhost] Hostname
|
|
104
104
|
--https Use HTTPS for development server
|
|
105
105
|
|
package/dist/commands/dev.js
CHANGED
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.1.
|
|
2
|
+
"version": "1.1.6",
|
|
3
3
|
"commands": {
|
|
4
4
|
"build": {
|
|
5
5
|
"id": "build",
|
|
@@ -157,7 +157,8 @@
|
|
|
157
157
|
"name": "allowedHosts",
|
|
158
158
|
"type": "option",
|
|
159
159
|
"description": "Allowed hosts for development server. You can set a single host or use \"all\" to allow all hosts",
|
|
160
|
-
"multiple": false
|
|
160
|
+
"multiple": false,
|
|
161
|
+
"default": "all"
|
|
161
162
|
}
|
|
162
163
|
},
|
|
163
164
|
"args": {}
|