Skip to content

Commit 862e225

Browse files
committed
add hellajs
1 parent 6035526 commit 862e225

File tree

4 files changed

+419
-0
lines changed

4 files changed

+419
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>HellaJS</title>
8+
<link href="/css/currentStyle.css" rel="stylesheet" />
9+
</head>
10+
11+
<body>
12+
<div id="root"></div>
13+
<script src="dist/main.js"></script>
14+
</body>
15+
16+
</html>

frameworks/non-keyed/hellajs/package-lock.json

Lines changed: 212 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "js-framework-benchmark-hellajs",
3+
"private": true,
4+
"version": "1.0.0",
5+
"author": "omilli",
6+
"js-framework-benchmark": {
7+
"frameworkVersionFromPackage": "@hellajs/core",
8+
"frameworkHomeURL": "https://github.com/omilli/hellajs"
9+
},
10+
"scripts": {
11+
"dev:server": "bun ./index.html",
12+
"dev:build": "bun build ./src/main.js --outdir ./dist --minify --watch",
13+
"dev": "bun run dev:server & bun run dev:build",
14+
"build-prod": "bun build ./src/main.js --outdir ./dist --minify"
15+
},
16+
"devDependencies": {
17+
"bun": "^1.2.9"
18+
},
19+
"dependencies": {
20+
"@hellajs/core": "^0.3.0"
21+
}
22+
}

0 commit comments

Comments
 (0)