Skip to content

Commit 1eeef01

Browse files
committed
[hello-parcel] add
1 parent dcca7ca commit 1eeef01

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

hello-percel/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/

hello-percel/index.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Hello Parcel</title>
6+
</head>
7+
<body>
8+
<script src="./index.js"></script>
9+
</body>
10+
</html>

hello-percel/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
console.log("Hello World")
2+
console.log("Hello2")

hello-percel/package.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "hello-percel",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "ISC"
12+
}

0 commit comments

Comments
 (0)