@afoures/auto-release 0.2.2 → 0.2.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.
@@ -72,8 +72,8 @@ const generate_release_pr = create_command({
72
72
  logger.note(`Release ${app.name} ${next_version}`, message_lines.join("\n"));
73
73
  if (dry_run) continue;
74
74
  for (const change of changes.list) {
75
- const relative_path = relative(root, change.filename);
76
- await delete_file(relative_path);
75
+ const change_file_path = join(config.changes_dir, app.name, change.filename);
76
+ await delete_file(change_file_path);
77
77
  }
78
78
  for (const component of app.components) for (const part of component.parts) {
79
79
  const initial_content = await read_file(part.file);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afoures/auto-release",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "A file based release management tool for monorepos",
5
5
  "homepage": "https://github.com/afoures/auto-release#readme",
6
6
  "bugs": {