Skip to content

Commit 9c1060d

Browse files
committed
Merge branch 'master' of https://github.com/htmujahid/js-framework-benchmark into htmujahid-master
2 parents 274d3aa + e68efe4 commit 9c1060d

File tree

12 files changed

+1176
-0
lines changed

12 files changed

+1176
-0
lines changed

frameworks/keyed/sonnet/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Benchmarks for Vanillajs-3</title>
5+
<link href="/css/currentStyle.css" rel="stylesheet" />
6+
</head>
7+
<body>
8+
<div id="main"></div>
9+
<template id="t1000"><tr><td class='col-md-1'>{id}</td><td class='col-md-4'><a class='lbl'>{lbl}</a></td><td class='col-md-1'><a class='remove'><span class='remove glyphicon glyphicon-remove' aria-hidden='true'></span></a></td><td class='col-md-6'></td></tr></template>
10+
<template id="t10000"><tr><td class='col-md-1'>{id}</td><td class='col-md-4'><a class='lbl'>{lbl}</a></td><td class='col-md-1'><a class='remove'><span class='remove glyphicon glyphicon-remove' aria-hidden='true'></span></a></td><td class='col-md-6'></td></tr></template>
11+
<script type="module" src='src/Main.js'></script>
12+
</body>
13+
</html>

frameworks/keyed/sonnet/package-lock.json

Lines changed: 269 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frameworks/keyed/sonnet/package.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "js-framework-benchmark-sonnet",
3+
"version": "0.0.1",
4+
"description": "SonnetJS Demo",
5+
"private": true,
6+
"js-framework-benchmark": {
7+
"frameworkVersionFromPackage": "sonnetjs",
8+
"frameworkHomeURL": "https://sonnet.js.org/",
9+
"customURL": "/dist"
10+
},
11+
"scripts": {
12+
"dev": "vite",
13+
"build-prod": "vite build",
14+
"preview": "vite preview"
15+
},
16+
"keywords": [
17+
"sonnetjs",
18+
"javascript"
19+
],
20+
"author": "Talha Mujahid",
21+
"license": "MIT",
22+
"homepage": "sonnet.js.org",
23+
"repository": {
24+
"type": "git",
25+
"url": "https://github.com/sonnetjs/sonnet.git"
26+
},
27+
"devDependencies": {
28+
"vite": "^5.2.6"
29+
},
30+
"dependencies": {
31+
"@sonnetjs/core": "0.0.29"
32+
}
33+
}

0 commit comments

Comments
 (0)