Skip to content

Commit 24d0bde

Browse files
committed
improve CSP check, flag implementations and run check on rebuild
1 parent 2ad53fa commit 24d0bde

File tree

16 files changed

+55
-51
lines changed

16 files changed

+55
-51
lines changed

cli/rebuild-check-single.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ export function rebuildCheckSingle(frameworks) {
3737
const keyedCmd = `npm run isKeyed -- --headless true ${frameworkNames}`;
3838
runCommand(keyedCmd, "webdriver-ts");
3939

40+
const cspCmd = `npm run checkCSP -- --headless true ${frameworkNames}`;
41+
runCommand(cspCmd, "webdriver-ts");
42+
4043
console.log("rebuild-check-single.js finished");
4144
console.log("All checks are fine!");
4245
console.log(`======> Please rerun the benchmark: npm run bench ${frameworkNames}`);

frameworks/keyed/anansi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"js-framework-benchmark": {
77
"frameworkVersion": "0.14.0",
88
"frameworkHomeURL": "https://saru-tora.github.io/anansi/",
9-
"issues": []
9+
"issues": [1139]
1010
},
1111
"scripts": {
1212
"dev": "exit 0",

frameworks/keyed/bobril/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"main": "src/app.js",
66
"js-framework-benchmark": {
77
"frameworkVersionFromPackage": "bobril",
8-
"frameworkHomeURL": "https://bobril.com/"
8+
"frameworkHomeURL": "https://bobril.com/",
9+
"issues": [1139]
910
},
1011
"scripts": {
1112
"dev": "bb",

frameworks/keyed/cample/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"main": "dist/main.js",
66
"js-framework-benchmark": {
77
"frameworkVersionFromPackage": "cample",
8-
"frameworkHomeURL": "https://camplejs.github.io"
8+
"frameworkHomeURL": "https://camplejs.github.io",
9+
"issues": [1139]
910
},
1011
"scripts": {
1112
"build-prod": "webpack --mode=production",

frameworks/keyed/doohtml-dom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"js-framework-benchmark": {
77
"frameworkVersion": "",
88
"frameworkHomeURL": "https://doohtml.com",
9-
"issues": [772, 1139]
9+
"issues": [772]
1010
},
1111
"scripts": {
1212
"dev": "exit 0",

frameworks/keyed/doohtml/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"useShadowRoot": true,
1010
"shadowRootName": "doo-main",
1111
"buttonsInShadowRoot": false,
12-
"issues": [772, 1139]
12+
"issues": [772]
1313
},
1414
"scripts": {
1515
"dev": "exit 0",

frameworks/keyed/goui/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"js-framework-benchmark": {
99
"customURL": "/build",
1010
"frameworkVersion": "0.1.2",
11-
"frameworkHomeURL": "https://github.com/twharmon/goui"
11+
"frameworkHomeURL": "https://github.com/twharmon/goui",
12+
"issues": [1139]
1213
}
1314
}

frameworks/keyed/marko/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"js-framework-benchmark": {
55
"frameworkVersionFromPackage": "marko",
66
"frameworkHomeURL": "https://markojs.com/",
7-
"customURL": "/dist"
7+
"customURL": "/dist",
8+
"issues": [1139]
89
},
910
"version": "1.0.0",
1011
"type": "module",

frameworks/keyed/openui5/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "UI5 Benchmark",
55
"js-framework-benchmark": {
66
"frameworkVersion": "1.120.0",
7-
"frameworkHomeURL": "https://openui5.org/"
7+
"frameworkHomeURL": "https://openui5.org/",
8+
"issues": [1139]
89
},
910
"scripts": {
1011
"build-dev": "ui5 serve -o index.html",

frameworks/keyed/owl/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "Benchmark for owl framework",
55
"js-framework-benchmark": {
66
"frameworkVersionFromPackage": "@odoo/owl",
7-
"frameworkHomeURL": "https://odoo.github.io/owl/"
7+
"frameworkHomeURL": "https://odoo.github.io/owl/",
8+
"issues": [1139]
89
},
910
"scripts": {
1011
"dev": "webpack --mode development --watch",

0 commit comments

Comments
 (0)