From 13c32636673886d74e3fdc09ff08940ae002eb5c Mon Sep 17 00:00:00 2001 From: FELIX CHERUIYOT Date: Fri, 17 Nov 2017 07:43:21 +0300 Subject: [PATCH 1/2] Fix missing vendor file reference vendor.min.js not found --- app/views/form.server.view.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/form.server.view.pug b/app/views/form.server.view.pug index 451536e7..366a0242 100644 --- a/app/views/form.server.view.pug +++ b/app/views/form.server.view.pug @@ -82,7 +82,7 @@ html(lang='en', xmlns='http://www.w3.org/1999/xhtml') //Minified Bower Dependencies script(src='/static/lib/angular/angular.min.js') - script(src='/static/dist/vendor.min.js') + script(src='/static/dist/form-vendor.min.js') script(src='/static/lib/angular-ui-date/src/date.js', type='text/javascript') //Application JavaScript Files From 4447785a562da03b01e2f78a94a47bd518b551e4 Mon Sep 17 00:00:00 2001 From: David Baldwynn Date: Tue, 21 Nov 2017 13:35:59 -0800 Subject: [PATCH 2/2] removed secure grunt task --- gruntfile.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gruntfile.js b/gruntfile.js index 82f510f9..0b5539b9 100755 --- a/gruntfile.js +++ b/gruntfile.js @@ -334,10 +334,7 @@ module.exports = function(grunt) { // Debug task. grunt.registerTask('debug', ['lint', 'html2js:main', 'html2js:forms', 'concurrent:debug']); - - // Secure task(s). - grunt.registerTask('secure', ['env:secure', 'lint', 'html2js:main', 'html2js:forms', 'concurrent:default']); - + // Lint task(s). grunt.registerTask('lint', ['jshint', 'csslint', 'i18nlint:client', 'i18nlint:server']); grunt.registerTask('lint:tests', ['jshint:allTests']);