create-blocklet 0.6.15 → 0.6.16
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/common/scripts/bump-version.mjs +1 -1
- package/package.json +1 -1
- package/templates/react-dapp/package.json +1 -1
- package/templates/react-dapp-ts/api/third.d.ts +2 -0
- package/templates/react-dapp-ts/package.json +1 -1
- package/templates/react-gun-dapp/package.json +1 -1
- package/templates/react-static/package.json +1 -1
- package/templates/solidjs-dapp/package.json +1 -1
- package/templates/solidjs-static/package.json +1 -1
- package/templates/svelte-dapp/package.json +1 -1
- package/templates/svelte-static/package.json +1 -1
- package/templates/vue-dapp/package.json +1 -1
- package/templates/vue-static/package.json +1 -1
- package/templates/vue2-dapp/package.json +1 -1
- package/templates/vue2-static/package.json +1 -1
|
@@ -28,7 +28,7 @@ const oldChangelog = await fs.readFile('CHANGELOG.md', 'utf8');
|
|
|
28
28
|
const changelog = [title, newChangelog, oldChangelog].filter((item) => !!item).join('\n\n');
|
|
29
29
|
await fs.writeFile('CHANGELOG.md', changelog);
|
|
30
30
|
|
|
31
|
-
console.log(`\nNow you can make adjustments to ${chalk.cyan('CHANGELOG.md')}. Then press enter to continue.`);
|
|
31
|
+
console.log(`\nNow you can make adjustments to ${chalk.cyan('CHANGELOG.md')} . Then press enter to continue.`);
|
|
32
32
|
|
|
33
33
|
process.stdin.setRawMode(true);
|
|
34
34
|
process.stdin.resume();
|
package/package.json
CHANGED