Skip to content

Commit 231eac1

Browse files
committed
chore: Update welcome messages
1 parent 73bf43b commit 231eac1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
</head>
1616

1717
<body>
18-
<div> You have successfully started your Typescript application using Webpack. By <a href="https://twitter.com/renaudin_yann">@renaudin_yann</a> </div>
18+
<div> You have successfully started your Typescript application using Webpack. Open your console to see your printed message from the index.ts file </div>
19+
<p>By <a href="https://twitter.com/renaudin_yann">@renaudin_yann</a> </p>
1920
</body>
2021

2122
</html>

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default class Main {
22
constructor() {
3-
console.log('Typescript Webpack starter launched TUs');
3+
console.log('Typescript Webpack starter launched');
44
}
55
}
66

0 commit comments

Comments
 (0)