polylith 0.1.5 → 0.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/bin/apps.js +1 -1
- package/package.json +1 -1
package/bin/apps.js
CHANGED
|
@@ -136,7 +136,7 @@ export async function build(name, config, options, watch) {
|
|
|
136
136
|
|
|
137
137
|
async function server(apps, options) {
|
|
138
138
|
var server = new PolylithServer({apps: apps}, options.dest);
|
|
139
|
-
await server.create();
|
|
139
|
+
await server.create(apps);
|
|
140
140
|
server.start(options.port || '8081');
|
|
141
141
|
}
|
|
142
142
|
|