Skip to content

Commit 5ccba08

Browse files
committed
chore: modify example/package.json
1 parent 35d1464 commit 5ccba08

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) --currentYear-- --username--
3+
Copyright (c) --currentYear-- - PRESENT --username--
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

tools/init.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ const { mv, rm, which, exec } = require('shelljs');
2323
// Note: These should all be relative to the project root directory
2424
const rmDirs = ['.git', 'tools'];
2525
const rmFiles = ['.all-contributorsrc', '.gitattributes'];
26-
const modifyFiles = ['LICENSE', 'package.json'];
27-
const renameFiles = [];
26+
const modifyFiles = ['LICENSE', 'package.json', 'example/package.json'];
27+
const renameFiles: Array<string> = [];
2828

2929
/**
3030
* Removes items from the project that aren't needed after the initial setup
@@ -280,7 +280,9 @@ if (!which('git')) {
280280

281281
// Say hi!
282282
console.log(
283-
cyan("Hi! You're almost ready to create a React Library with Typescript.")
283+
cyan(
284+
"Hi! You're almost ready to create the next React Library with Typescript."
285+
)
284286
);
285287

286288
// Generate the library name and start the tasks

0 commit comments

Comments
 (0)