Skip to content

Commit 4929237

Browse files
committed
refactor of directive customValidation, more modular and expressive. Also including lazy.js in the build
1 parent b07e6a5 commit 4929237

File tree

8 files changed

+29073
-272
lines changed

8 files changed

+29073
-272
lines changed

Gruntfile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ module.exports = function (grunt) {
2525
app: require('./bower.json').appPath || 'app',
2626
services: 'app/scripts/services',
2727
directives: 'app/scripts/directives',
28+
bower: 'app/bower_components',
2829
dist: 'dist'
2930
},
3031

@@ -293,7 +294,8 @@ module.exports = function (grunt) {
293294
'.htaccess',
294295
'bower_components/**/*',
295296
'images/{,*/}*.{webp}',
296-
'fonts/*'
297+
'fonts/*',
298+
'angular-latest.js'
297299
]
298300
},
299301
{
@@ -363,6 +365,7 @@ module.exports = function (grunt) {
363365
concat: {
364366
distsourcefile: {
365367
src: [
368+
'<%= yeoman.bower %>/lazy.js/lazy.js', //TODO: may move and rename this as it is modified to accept invalid JSOL
366369
'<%= yeoman.app %>/scripts/JSOL/jsol.js', //TODO: may move and rename this as it is modified to accept invalid JSOL
367370
'<%= yeoman.services %>/{,*}/*.js',
368371
'<%= yeoman.directives %>/{,*}/*.js',

0 commit comments

Comments
 (0)