queryCtrl and utils module refactor. Suppress "use strict" warnings in modules.

This commit is contained in:
Alexander Zobnin
2016-03-15 20:14:23 +03:00
parent 8b37478131
commit 775c2ddac1
5 changed files with 292 additions and 302 deletions

View File

@@ -17,6 +17,8 @@ module.exports = function(grunt) {
'**/*',
'!**/datasource.js',
'!**/module.js',
'!**/queryCtrl.js',
'!**/utils.js',
'!**/*.scss'
],
dest: 'dist/src'
@@ -47,8 +49,10 @@ module.exports = function(grunt) {
cwd: 'src',
expand: true,
src: [
'**/**/datasource.js',
'**/**/module.js',
'**/**/datasource.js',
'**/**/queryCtrl.js',
'**/**/utils.js',
],
dest: 'dist/src',
ext:'.js'