]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
build: fix build script [skip ci]
authorEduardo San Martin Morote <posva13@gmail.com>
Thu, 19 Aug 2021 17:25:35 +0000 (19:25 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Thu, 19 Aug 2021 17:25:35 +0000 (19:25 +0200)
packages/pinia/CHANGELOG.md
packages/testing/CHANGELOG.md
scripts/release.mjs

index cfdb916eda986ee6e61d74ab239fad280f49e1c1..0c970be29733c0c66146f14ae7f6b80e041352e6 100644 (file)
@@ -1,6 +1,8 @@
 # [2.0.0-rc.6](https://github.com/posva/pinia/compare/pinia@2.0.0-rc.5...pinia@2.0.0-rc.6) (2021-08-19)
 
-# 2.0.0-rc.5 (2021-08-19)
+Fix missing types.
+
+# [2.0.0-rc.5](https://github.com/posva/pinia/compare/v2.0.0-rc.4...v2.0.0-rc.5) (2021-08-19)
 
 ### Bug Fixes
 
index ce30f134522caa13dd4f19291699daff42ee8413..5c38ea8c324034db6398748b01896229f60b51c7 100644 (file)
@@ -1,5 +1,7 @@
 ## [0.0.2](https://github.com/posva/pinia/compare/@pinia/testing@0.0.1...@pinia/testing@0.0.2) (2021-08-19)
 
+Small refactor with no effective changes.
+
 ## 0.0.1 (2021-08-19)
 
 ### Features
index 34a79b1d98f96d2c982de45c80f0c12fc4eb0260..022f4ef6bf7ae73c5705dbf6fd2c1298e65d1c3c 100644 (file)
@@ -180,6 +180,16 @@ async function main() {
     )
   }
 
+  const { yes } = await prompt({
+    type: 'confirm',
+    name: 'yes',
+    message: 'Are the changelogs correct?',
+  })
+
+  if (!yes) {
+    return
+  }
+
   step('\nBuilding all packages...')
   if (!skipBuild && !isDryRun) {
     await run('yarn', ['build'])