diff options
author | Hakim El Hattab | 2019-04-01 11:14:22 +0200 |
---|---|---|
committer | Hakim El Hattab | 2019-04-01 11:14:22 +0200 |
commit | 29ea072ddffdd454b3b00ba02aa650349e949dc4 (patch) | |
tree | 9d0b2460282cad6b9061ec8da2238d4bc9e5ae96 /Gruntfile.ts | |
parent | df25fbebba5fe37e8b94d0d8329a9513a2cb76f9 (diff) |
fix npm security warnings, auto run tests when changed
Diffstat (limited to 'Gruntfile.ts')
-rw-r--r-- | Gruntfile.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Gruntfile.ts b/Gruntfile.ts index 1b7f31c..597ede1 100644 --- a/Gruntfile.ts +++ b/Gruntfile.ts @@ -144,6 +144,10 @@ module.exports = function(grunt) { files: [ 'css/reveal.scss' ], tasks: 'css-core' }, + test: { + files: [ 'test/*.html' ], + tasks: 'test' + }, html: { files: root.map(path => path + '/*.html') }, |