Skip to content

Commit ee9cfa0

Browse files
committed
Merge branch 'master' of https://github.com/maomincoding/js-framework-benchmark into maomincoding-master
2 parents 76083fb + 095f6bb commit ee9cfa0

File tree

7 files changed

+2293
-0
lines changed

7 files changed

+2293
-0
lines changed

frameworks/keyed/mettle/.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
/buildDir
5+
.parcel-cache
6+
7+
# local env files
8+
.env.local
9+
.env.*.local
10+
11+
# Log files
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
pnpm-debug.log*
16+
17+
# Editor directories and files
18+
.idea
19+
.vscode
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
yarn.lock

frameworks/keyed/mettle/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 lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Mettle-keyed</title>
6+
<link href="/css/currentStyle.css" rel="stylesheet" />
7+
</head>
8+
9+
<body>
10+
<div id="main" class="container"></div>
11+
<script src="dist/main.js"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)