@getpawl/setup 1.4.1 → 1.4.3
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/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -352,8 +352,9 @@ async function pawlInit(key, opts) {
|
|
|
352
352
|
const result = await autoBootstrap(config.projectId, config.apiKey, repoUrl, config.apiUrl);
|
|
353
353
|
if (result && result.specsGenerated > 0) {
|
|
354
354
|
console.log(` Generated ${result.specsGenerated} draft specs`);
|
|
355
|
-
console.log(` Review and confirm at: ${hyperlink(result.previewUrl, result.previewUrl)}
|
|
356
|
-
|
|
355
|
+
console.log(` Review and confirm at: ${hyperlink(result.previewUrl, result.previewUrl)}`);
|
|
356
|
+
openBrowser(result.previewUrl);
|
|
357
|
+
console.log(" After confirming, run:\n pawl sync --pull\n");
|
|
357
358
|
}
|
|
358
359
|
}
|
|
359
360
|
}
|