You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.description('Starts the development server (development mode)')
93
-
.option(
94
-
'-u, --user-data-dir <path-to-file | boolean>',
95
-
'[DEPRECATED - Use "--profile" instead] what path to use for the browser profile. A boolean value of false sets the profile to the default user profile. Defaults to a fresh profile'
96
-
)
97
94
.option(
98
95
'--profile <path-to-file | boolean>',
99
96
'what path to use for the browser profile. A boolean value of false sets the profile to the default user profile. Defaults to a fresh profile'
100
97
)
101
98
.option(
102
-
'-b, --browser <chrome | edge | firefox>',
103
-
'specify a browser to run your extension in development mode'
99
+
'--browser <chrome | edge | firefox>',
100
+
'specify a browser to preview your extension in production mode. Defaults to `chrome`'
104
101
)
105
102
.option(
106
103
'--chromium-binary <path-to-binary>',
@@ -112,26 +109,32 @@ extensionJs
112
109
)
113
110
.option(
114
111
'--polyfill [boolean]',
115
-
'whether or not to apply the cross-browser polyfill. Defaults to `true`'
112
+
'whether or not to apply the cross-browser polyfill. Defaults to `false`'
116
113
)
117
114
.option(
118
-
'-p, --port <number>',
119
-
'what port should Extension.js WebSocket server run. Defaults to `8000`'
115
+
'--open [boolean]',
116
+
'whether or not to open the browser automatically. Defaults to `true`'
120
117
)
121
118
.option(
122
-
'-o, --open [boolean]',
123
-
'whether or not to open the browser automatically. Defaults to `true`'
119
+
'--starting-url <url>',
120
+
'specify the starting URL for the browser. Defaults to `undefined`'
.description('Starts the development server (production mode)')
151
-
.option(
152
-
'-u, --user-data-dir <path-to-file | boolean>',
153
-
'[DEPRECATED - Use "--profile" instead] what path to use for the browser profile. A boolean value of false sets the profile to the default user profile. Defaults to a fresh profile'
154
-
)
155
154
.option(
156
155
'--profile <path-to-file | boolean>',
157
156
'what path to use for the browser profile. A boolean value of false sets the profile to the default user profile. Defaults to a fresh profile'
158
157
)
159
158
.option(
160
-
'-b, --browser <chrome | edge | firefox>',
161
-
'specify a browser to run your extension in development mode'
159
+
'--browser <chrome | edge | firefox>',
160
+
'specify a browser to preview your extension in production mode. Defaults to `chrome`'
161
+
)
162
+
.option(
163
+
'--polyfill [boolean]',
164
+
'whether or not to apply the cross-browser polyfill. Defaults to `true`'
162
165
)
163
166
.option(
164
167
'--chromium-binary <path-to-binary>',
@@ -169,21 +172,21 @@ extensionJs
169
172
'specify a path to the Gecko binary. This option overrides the --browser setting. Defaults to the system default'
170
173
)
171
174
.option(
172
-
'--polyfill [boolean]',
173
-
'whether or not to apply the cross-browser polyfill. Defaults to `true`'
174
-
)
175
-
.option(
176
-
'-p, --port <number>',
177
-
'what port should Extension.js run. Defaults to `3000`'
175
+
'--starting-url <url>',
176
+
'specify the starting URL for the browser. Defaults to `undefined`'
0 commit comments