Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 14d3d66

Browse files
committed
Merge branch 'master' of https://github.com/saylu/js-framework-benchmark into saylu-master
2 parents 8f7d261 + 2690e16 commit 14d3d66

File tree

7 files changed

+433
-1
lines changed

7 files changed

+433
-1
lines changed

halogen-v2.1.0-non-keyed/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Dependencies
2+
.psci_modules
3+
bower_components
4+
node_modules
5+
6+
# Generated files
7+
.psci
8+
output
9+

halogen-v2.1.0-non-keyed/bower.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "js-framework-benchmark-pux",
3+
"description": "Purescript Halogen JS Benchmark",
4+
"main": "index.js",
5+
"authors": [
6+
"Thomas Honeyman <[email protected]>"
7+
],
8+
"license": "ISC",
9+
"keywords": [
10+
"purescript",
11+
"halogen"
12+
],
13+
"homepage": "https://github.com/krausest/js-framework-benchmark",
14+
"ignore": [
15+
"**/.*",
16+
"node_modules",
17+
"bower_components"
18+
],
19+
"dependencies": {
20+
"purescript-prelude": "3.1.0",
21+
"purescript-halogen": "2.1.0",
22+
"purescript-random": "3.0.0",
23+
"purescript-tailrec": "^3.3.0"
24+
}
25+
}

halogen-v2.1.0-non-keyed/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Halogen v2.1.0</title>
6+
<link href="/css/currentStyle.css" rel="stylesheet"/>
7+
</head>
8+
<body>
9+
<script src='output/bundle.js'></script>
10+
</body>
11+
</html>

halogen-v2.1.0-non-keyed/package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "js-framework-benchmark-pux",
3+
"version": "1.0.0",
4+
"description": "Purescript Halogen JS Benchmark",
5+
"main": "index.js",
6+
"scripts": {
7+
"postinstall": "bower install",
8+
"clean": "rm -rf output bower_components node_modules",
9+
"build-dev": "pulp browserify --to output/bundle.js",
10+
"build-prod": "pulp browserify --optimise --to output/bundle.js"
11+
},
12+
"keywords": [
13+
"purescript",
14+
"pux"
15+
],
16+
"author": "Thomas Honeyman <[email protected]>",
17+
"license": "ISC",
18+
"homepage": "https://github.com/krausest/js-framework-benchmark",
19+
"repository": {
20+
"type": "git",
21+
"url": "https://github.com/krausest/js-framework-benchmark.git"
22+
},
23+
"devDependencies": {
24+
"bower": "1.8.0",
25+
"pulp": "11.0.0",
26+
"purescript": "0.11.6"
27+
}
28+
}

0 commit comments

Comments
 (0)