initial commit

This commit is contained in:
overflowerror 2023-10-29 22:18:28 +01:00
commit f1a6deea01
6 changed files with 1276 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
dist/*.js
node_modules

9
dist/index.html vendored Normal file
View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<script src="main.js"></script>"
</head>
<body>
Hello World
</body>
</html>

1238
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

17
package.json Normal file
View file

@ -0,0 +1,17 @@
{
"dependencies": {
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"name": "glitch-countdown",
"version": "1.0.0",
"private": true,
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
},
"author": "",
"license": "ISC",
"description": ""
}

1
src/index.js Normal file
View file

@ -0,0 +1 @@
console.log("Hello World");

9
webpack.config.js Normal file
View file

@ -0,0 +1,9 @@
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist'),
},
};