Skip to content

Commit 1d15b0c

Browse files
committed
version bump, straightened up scripts
1 parent 32c93da commit 1d15b0c

11 files changed

+25
-24
lines changed

benchmark/results/general.chart.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</head>
2929
<body>
3030
<div class="container">
31-
<canvas id="chart1650385543249" width="16" height="9"></canvas>
31+
<canvas id="chart1650391201657" width="16" height="9"></canvas>
3232
</div>
3333
<script>
3434
const format = (num) => {
@@ -51,18 +51,18 @@
5151
chunked.map((chunk) => chunk.join('')).join(' ') + fractionStr
5252
)
5353
}
54-
const ctx1650385543249 = document
55-
.getElementById('chart1650385543249')
54+
const ctx1650391201657 = document
55+
.getElementById('chart1650391201657')
5656
.getContext('2d')
57-
const chart1650385543249 = new Chart(ctx1650385543249, {
57+
const chart1650391201657 = new Chart(ctx1650391201657, {
5858
type: 'bar',
5959
data: {
6060
labels: ["Blind cycle a traffic light 500 times by transition","Blind cycle a traffic light 500 times by action"],
6161
datasets: [
6262
{
63-
data: [11753,9261],
64-
backgroundColor: ["hsl(120, 85%, 55%)","hsl(94.55999999999999, 85%, 55%)"],
65-
borderColor: ["hsl(120, 85%, 55%)","hsl(94.55999999999999, 85%, 55%)"],
63+
data: [9926,8693],
64+
backgroundColor: ["hsl(120, 85%, 55%)","hsl(105.096, 85%, 55%)"],
65+
borderColor: ["hsl(120, 85%, 55%)","hsl(105.096, 85%, 55%)"],
6666
borderWidth: 2,
6767
},
6868
],

benchmark/results/general.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "General performance suite",
3-
"date": "2022-04-19T16:25:43.249Z",
3+
"date": "2022-04-19T18:00:01.657Z",
44
"version": "1.0.0",
55
"results": [
66
{
77
"name": "Blind cycle a traffic light 500 times by transition",
8-
"ops": 11753,
9-
"margin": 3.14,
8+
"ops": 9926,
9+
"margin": 2.69,
1010
"percentSlower": 0
1111
},
1212
{
1313
"name": "Blind cycle a traffic light 500 times by action",
14-
"ops": 9261,
15-
"margin": 1.53,
16-
"percentSlower": 21.2
14+
"ops": 8693,
15+
"margin": 3.07,
16+
"percentSlower": 12.42
1717
}
1818
],
1919
"fastest": {

dist/es6/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
const version = "5.41.15";
1+
const version = "5.42.0";
22
export { version };

dist/jssm.es5.cjs.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jssm.es5.cjs.nonmin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15885,7 +15885,7 @@ function peg$parse(input, options) {
1588515885
}
1588615886
}
1588715887

15888-
const version = "5.41.15";
15888+
const version = "5.42.0";
1588915889

1589015890
// whargarbl lots of these return arrays could/should be sets
1589115891
/* eslint-disable complexity */

dist/jssm.es5.iife.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jssm.es5.iife.nonmin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15884,7 +15884,7 @@ var jssm = (function (exports) {
1588415884
}
1588515885
}
1588615886

15887-
const version = "5.41.15";
15887+
const version = "5.42.0";
1588815888

1588915889
// whargarbl lots of these return arrays could/should be sets
1589015890
/* eslint-disable complexity */

docs/docs/classes/Machine.html

+1-1
Large diffs are not rendered by default.

docs/docs/modules.html

+1-1
Large diffs are not rendered by default.

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jssm",
3-
"version": "5.41.15",
3+
"version": "5.42.0",
44
"engines": {
55
"node": ">=10.0.0"
66
},
@@ -39,8 +39,9 @@
3939
"eslint": "eslint --color src/ts/jssm.ts src/ts/jssm_types.ts src/ts/tests/*.ts",
4040
"audit": "text_audit -r -t major MAJOR wasteful WASTEFUL any mixed fixme FIXME checkme CHECKME testme TESTME stochable STOCHABLE todo TODO comeback COMEBACK whargarbl WHARGARBL -g ./src/ts/**/*.{js,ts}",
4141
"vet": "npm run eslint && npm run audit",
42-
"build": "npm run vet && npm run test && npm run site && npm run docs",
43-
"ci_build": "npm run vet && npm run test",
42+
"benny": "node ./src/buildjs/benchmark.js",
43+
"build": "npm run vet && npm run test && npm run site && npm run docs && npm run benny",
44+
"ci_build": "npm run vet && npm run test && npm run benny",
4445
"minify": "mv dist/es6/jssm-dot.js dist/es6/jssm-dot.nonmin.js && terser dist/es6/jssm-dot.nonmin.js > dist/es6/jssm-dot.js",
4546
"min_iife": "mv dist/jssm.es5.iife.js dist/jssm.es5.iife.nonmin.js && terser dist/jssm.es5.iife.nonmin.js > dist/jssm.es5.iife.js",
4647
"min_cjs": "mv dist/jssm.es5.cjs.js dist/jssm.es5.cjs.nonmin.js && terser dist/jssm.es5.cjs.nonmin.js > dist/jssm.es5.cjs.js",

src/ts/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

2-
const version: string = "5.41.15";
2+
const version: string = "5.42.0";
33
export { version };

0 commit comments

Comments
 (0)