From 26ded450f45f3ad7e21bd94bdfb341f1ed786884 Mon Sep 17 00:00:00 2001 From: Mingun Date: Mon, 12 Sep 2016 22:53:51 +0500 Subject: [PATCH 1/2] Add "use strict" for spec and benchmark servers --- benchmark/server | 2 ++ spec/server | 2 ++ 2 files changed, 4 insertions(+) diff --git a/benchmark/server b/benchmark/server index 6852f22..39fece8 100755 --- a/benchmark/server +++ b/benchmark/server @@ -3,6 +3,8 @@ /* eslint-env node */ /* eslint no-console: 0 */ +"use strict"; + /* * Small server whose main purpose is to ensure that both the benchmarked code * and the benchmark get passed through Babel & Browserify before they are diff --git a/spec/server b/spec/server index fcd29f7..e729d7e 100755 --- a/spec/server +++ b/spec/server @@ -3,6 +3,8 @@ /* eslint-env node */ /* eslint no-console: 0 */ +"use strict"; + /* * Small server whose main purpose is to ensure that both the specced code and * the specs get passed through Babel & Browserify before they are served to the From fcddfbebdd8e9219ce4f85a5f325b8e7aa204546 Mon Sep 17 00:00:00 2001 From: Mingun Date: Wed, 14 Sep 2016 21:39:04 +0500 Subject: [PATCH 2/2] Add `glob` dev dependency used in spec and benchmark servers --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 97195e8..bc80c70 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,7 @@ "browserify": "13.1.0", "eslint": "2.13.1", "express": "4.14.0", + "glob": "7.0.6", "jasmine-node": "1.14.5", "morgan": "1.7.0", "uglify-js": "2.7.0"