Skip to content

Commit d963410

Browse files
committed
(v0.0.2) fixed readme- wrong url
1 parent 1520164 commit d963410

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-typescript-project-scaffolding",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Scaffold your new Typescript project with everything you need",
55
"main": "./dist/index.js",
66
"exports": {

src/lib/answerHandlers/createNewProjectFiles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export class CreateNewProjectFiles {
130130
// create readme.md
131131
fs.writeFileSync(
132132
path.join(this.path, 'readme.md'),
133-
`# ${this.projectName}\n\n2022\nCreated with ♥ by [typescript-project-scaffolding](google.de)`
133+
`# ${this.projectName}\n\n2022\nCreated with ♥ by [typescript-project-scaffolding](https://github.com/Trickfilm400/typescript-project-scaffolding)`
134134
);
135135
fs.copyFileSync(path.join(this.staticPath, 'gitignore'), path.join(this.path, '.gitignore'));
136136
//copy a tsconfig file with declarations true if it is a npm module

0 commit comments

Comments
 (0)