Skip to content

Commit 93f463f

Browse files
committed
Minor improvements
1 parent 0d6ced0 commit 93f463f

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

CHANGELOG.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ IMAGE_NAME := ghcr.io/phptg/scaffolder
55
build: ## Build the docker image
66
docker build -t $(IMAGE_NAME) .
77

8-
run:
8+
run: ## Run tool via docker
99
docker run \
1010
--volume .:/project \
1111
--user $(shell id -u):$(shell id -g) \

scaffolder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
return [
66
'title' => 'PHPTG Scaffolder',
77
'disable' => [
8+
'changelog',
89
'docs-internals',
910
'tests-directory',
1011
],

src/changes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
new CopyFile($files . '/logo.png', 'logo.png'),
102102
],
103103
'docs-internals' => new PrepareDocsInternals(),
104-
new PrepareChangelog(),
104+
'changelog' => new PrepareChangelog(),
105105
new CopyFile($files . '/tools/.gitignore', 'tools/.gitignore'),
106106
new ChangeIf(
107107
[

0 commit comments

Comments
 (0)