@mlaursen/release-script 0.0.3 → 0.0.4

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.
Files changed (2) hide show
  1. package/dist/release.js +0 -2
  2. package/package.json +1 -1
package/dist/release.js CHANGED
@@ -21,8 +21,6 @@ export async function release(options) {
21
21
  exec("git add .changeset");
22
22
  const changeset = await getCurrentChangeset();
23
23
  exec("pnpm changeset version", { stdio: "inherit" });
24
- // handle the first release
25
- exec("git add CHANGELOG.md");
26
24
  exec("git add -u");
27
25
  await continueRelease();
28
26
  exec(`git commit -m "${versionMessage}"`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mlaursen/release-script",
3
3
  "type": "module",
4
- "version": "0.0.3",
4
+ "version": "0.0.4",
5
5
  "description": "The release script I normally use for packages I publish to npm",
6
6
  "repository": "https://github.com/mlaursen/release-script.git",
7
7
  "author": "Mikkel Laursen <mlaursen03@gmail.com>",