Skip to content

Commit

Permalink
(v0.0.2) fixed readme- wrong url
Browse files Browse the repository at this point in the history
  • Loading branch information
Trickfilm400 committed Nov 21, 2022
1 parent 1520164 commit d963410
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-typescript-project-scaffolding",
"version": "0.0.1",
"version": "0.0.2",
"description": "Scaffold your new Typescript project with everything you need",
"main": "./dist/index.js",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/answerHandlers/createNewProjectFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class CreateNewProjectFiles {
// create readme.md
fs.writeFileSync(
path.join(this.path, 'readme.md'),
`# ${this.projectName}\n\n2022\nCreated with ♥ by [typescript-project-scaffolding](google.de)`
`# ${this.projectName}\n\n2022\nCreated with ♥ by [typescript-project-scaffolding](https://github.com/Trickfilm400/typescript-project-scaffolding)`
);
fs.copyFileSync(path.join(this.staticPath, 'gitignore'), path.join(this.path, '.gitignore'));
//copy a tsconfig file with declarations true if it is a npm module
Expand Down

0 comments on commit d963410

Please sign in to comment.