Webpack init
This commit is contained in:
parent
cc723a929d
commit
2c75133a37
|
|
@ -1 +1,2 @@
|
|||
node-modules/
|
||||
node_modules/
|
||||
dist/main.js
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Document</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script src="main.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
|
|
@ -2,14 +2,20 @@
|
|||
"name": "blorg-frontend",
|
||||
"version": "1.0.0",
|
||||
"description": "Frontend for Blorg",
|
||||
"main": "index.js",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "webpack"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.cspark.dev/Blorg/Blorg-Frontend"
|
||||
},
|
||||
"author": "Curt Spark",
|
||||
"license": "GPL-3.0-or-later"
|
||||
"license": "GPL-3.0-or-later",
|
||||
"devDependencies": {
|
||||
"prettier": "3.2.5",
|
||||
"webpack": "^5.91.0",
|
||||
"webpack-cli": "^5.1.4"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
console.log("Hi")
|
||||
Loading…
Reference in New Issue