Skip to content

Commit 0b85205

Browse files
committed
Various Small Fixes
Closes #12 Closes #14
1 parent a3593ee commit 0b85205

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ Options:
2020

2121
## Template Types
2222

23-
Two types of templates are provided. [Minimal templates](./templates/min) are
23+
Two types of templates are provided. [Minimal templates](templates/min) are
2424
designed for users that want to build their own front-end project (dApp) without
2525
the need to remove unnecessary boilerplate code.
26-
[Demonstration templates](./templates/demo) are designed to showcase how Web3.js
26+
[Demonstration templates](templates/demo) are designed to showcase how Web3.js
2727
can be used to build dApps.
2828

29-
## Front-End Framework
29+
## Front-End Frameworks
3030

3131
This utility supports the following front-end frameworks:
3232

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"ChainSafe <[email protected]>"
2323
],
2424
"license": "MIT",
25+
"repository": "github:web3/create-web3js-dapp",
2526
"devDependencies": {
2627
"ts-node": "^10.9.2",
2728
"tsup": "^8.3.0",

templates/demo/web3js-react-dapp-demo/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function App() {
4242

4343
return (
4444
<main>
45-
<h1>Web3.js + React Minimal dApp Template</h1>
45+
<h1>Web3.js + React Demonstration dApp</h1>
4646
<div>
4747
This is a sample project that demonstrates using{" "}
4848
<a href="https://web3js.org/">Web3.js</a> with the{" "}

templates/min/web3js-vue-dapp-min/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"dev": "vite",
1212
"build": "run-p type-check \"build-only {@}\" --",
1313
"preview": "vite preview",
14+
"start": "npm run preview",
1415
"test:unit": "vitest",
1516
"build-only": "vite build",
1617
"type-check": "vue-tsc --build --force",

0 commit comments

Comments
 (0)