@cccarv82/freya 2.5.0 → 2.5.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/cli/web.js +2 -1
- package/package.json +1 -1
package/cli/web.js
CHANGED
|
@@ -3858,8 +3858,9 @@ async function cmdWeb({ port, dir, open, dev }) {
|
|
|
3858
3858
|
if (!targetOk && !empty) {
|
|
3859
3859
|
fs.writeSync(process.stdout.fd, `Dev seed: skipped (workspace not empty and not initialized) -> ${target}\n`);
|
|
3860
3860
|
} else {
|
|
3861
|
+
await initWorkspace({ targetDir: target, force: false });
|
|
3861
3862
|
seedDevWorkspace(target);
|
|
3862
|
-
fs.writeSync(process.stdout.fd, `Dev seed: created
|
|
3863
|
+
fs.writeSync(process.stdout.fd, `Dev seed: created complete environment in ${target}\n`);
|
|
3863
3864
|
}
|
|
3864
3865
|
} catch (e) {
|
|
3865
3866
|
fs.writeSync(process.stdout.fd, `Dev seed failed: ${e.message || String(e)}\n`);
|
package/package.json
CHANGED