Skip to content

Commit f770a94

Browse files
committed
Merge branch 'master' of https://github.com/ts-thomas/js-framework-benchmark into ts-thomas-master
2 parents 735ec13 + 039966e commit f770a94

File tree

12 files changed

+21
-23
lines changed

12 files changed

+21
-23
lines changed

frameworks/keyed/mikado-proxy/package-lock.json

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

frameworks/keyed/mikado-proxy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"build-prod": "npm run build"
2222
},
2323
"dependencies": {
24-
"mikado": "github:nextapps-de/mikado#0.8-preview"
24+
"mikado": "^0.8.134"
2525
},
2626
"devDependencies": {
2727
"google-closure-compiler": "^20230802.0.0"

frameworks/keyed/mikado-proxy/src/template/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="jumbotron">
44
<div class="row">
55
<div class="col-md-6">
6-
<h1>Mikado-"keyed"</h1>
6+
<h1>Mikado-Proxy-"keyed"</h1>
77
</div>
88
<div class="col-md-6">
99
<div class="row">

frameworks/keyed/mikado/package-lock.json

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

frameworks/keyed/mikado/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"build-prod": "npm run build"
2222
},
2323
"dependencies": {
24-
"mikado": "github:nextapps-de/mikado#0.8-preview"
24+
"mikado": "^0.8.134"
2525
},
2626
"devDependencies": {
2727
"google-closure-compiler": "^20230802.0.0"

frameworks/keyed/mikado/src/data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let nextId = 1;
1010

1111
export default function(count){
1212

13-
const data = [];
13+
const data = new Array(count);
1414

1515
for(let i = 0; i < count; i++){
1616

frameworks/keyed/mikado/src/template/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="jumbotron">
44
<div class="row">
55
<div class="col-md-6">
6-
<h1>Mikado-"non-keyed"</h1>
6+
<h1>Mikado-"keyed"</h1>
77
</div>
88
<div class="col-md-6">
99
<div class="row">

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

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

frameworks/non-keyed/mikado/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"build-prod": "npm run build"
2222
},
2323
"dependencies": {
24-
"mikado": "github:nextapps-de/mikado#0.8-preview"
24+
"mikado": "^0.8.134"
2525
},
2626
"devDependencies": {
2727
"google-closure-compiler": "^20230802.0.0"

frameworks/non-keyed/mikado/src/data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let nextId = 1;
1010

1111
export default function(count){
1212

13-
const data = [];
13+
const data = new Array(count);
1414

1515
for(let i = 0; i < count; i++){
1616

0 commit comments

Comments
 (0)