Skip to content

Commit df64aac

Browse files
committed
improve rebuilding
1 parent c954d8f commit df64aac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rebuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if (frameworks.length === 0) {
1212
for (let framework of frameworks) {
1313
let dir = 'frameworks/'+framework;
1414
console.log("rebuilding "+framework);
15-
if (!fs.existsSync(dir)) console.log ("ERROR: directory "+dir+" not found");
15+
if (!fs.existsSync(dir)) throw "ERROR: directory "+dir+" not found";
1616
else {
1717
console.log("running rm -rf package-lock.json yarn.lock dist elm-stuff bower_components node_modules");
1818
try {

webdriver-ts/src/isKeyed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function isKeyedSwapRow(result: any): boolean {
109109

110110
async function runBench(frameworkNames: string[]) {
111111
let runFrameworks = frameworks.filter(f => frameworkNames.some(name => f.fullNameWithKeyedAndVersion.indexOf(name)>-1));
112-
console.log("Frameworks that will be checked", runFrameworks.map(f => f.fullNameWithKeyedAndVersion));
112+
console.log("Frameworks that will be checked", runFrameworks.map(f => f.fullNameWithKeyedAndVersion).join(' '));
113113

114114
let frameworkMap = new Map<String, FrameworkData>();
115115
frameworks.forEach(f => frameworkMap.set(f.fullNameWithKeyedAndVersion, f));

0 commit comments

Comments
 (0)