We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcca7ca commit 1eeef01Copy full SHA for 1eeef01
hello-percel/.gitignore
@@ -0,0 +1 @@
1
+dist/
hello-percel/index.html
@@ -0,0 +1,10 @@
+<!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
@@ -0,0 +1,2 @@
+console.log("Hello World")
+console.log("Hello2")
hello-percel/package.json
@@ -0,0 +1,12 @@
+{
+ "name": "hello-percel",
+ "version": "1.0.0",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "keywords": [],
+ "author": "",
11
+ "license": "ISC"
12
+}
0 commit comments