Skip to content

Commit

Permalink
chore: correct missing release-it dependencies for blockReleaseIt (#1770
Browse files Browse the repository at this point in the history
)

## PR Checklist

- [x] Addresses an existing open issue: fixes #1769
- [x] That issue was marked as [`status: accepting
prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
- [x] Steps in
[CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md)
were taken

## Overview

Marking as a `chore:` because this only impacts when opting into the new
`create` engine with the undocumented `CTA_CREATE_ENGINE` flag.

💖
  • Loading branch information
JoshuaKGoldberg authored Dec 15, 2024
1 parent 14b6e51 commit d52ed53
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/next/blocks/blockReleaseIt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { createSoloWorkflowFile } from "../../steps/writing/creation/dotGitHub/c
import { base } from "../base.js";
import { blockCSpell } from "./blockCSpell.js";
import { blockPackageJson } from "./blockPackageJson.js";
import { getPackageDependencies } from "./packageData.js";

export const blockReleaseIt = base.createBlock({
about: {
Expand All @@ -15,6 +16,10 @@ export const blockReleaseIt = base.createBlock({
}),
blockPackageJson({
properties: {
devDependencies: getPackageDependencies(
"@release-it/conventional-changelog",
"release-it",
),
publishConfig: {
provenance: true,
},
Expand Down

0 comments on commit d52ed53

Please sign in to comment.