@@ -287,10 +287,10 @@ module.exports = function (grunt) {
287
287
dist : {
288
288
files : {
289
289
src : [
290
- '<%%= yeoman.dist %>/public /{,*/}*.js' ,
291
- '<%%= yeoman.dist %>/public /{,*/}*.css' ,
292
- '<%%= yeoman.dist %>/public /assets/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}' ,
293
- '<%%= yeoman.dist %>/public /assets/fonts/*'
290
+ '<%%= yeoman.dist %>/client /{,*/}*.js' ,
291
+ '<%%= yeoman.dist %>/client /{,*/}*.css' ,
292
+ '<%%= yeoman.dist %>/client /assets/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}' ,
293
+ '<%%= yeoman.dist %>/client /assets/fonts/*'
294
294
]
295
295
}
296
296
}
@@ -302,19 +302,19 @@ module.exports = function (grunt) {
302
302
useminPrepare: {
303
303
html : [ '<%%= yeoman.client %>/index.html' ] ,
304
304
options : {
305
- dest : '<%%= yeoman.dist %>/public '
305
+ dest : '<%%= yeoman.dist %>/client '
306
306
}
307
307
} ,
308
308
309
309
// Performs rewrites based on rev and the useminPrepare configuration
310
310
usemin: {
311
- html : [ '<%%= yeoman.dist %>/public /{,*/}*.html' ] ,
312
- css : [ '<%%= yeoman.dist %>/public /{,*/}*.css' ] ,
313
- js : [ '<%%= yeoman.dist %>/public /{,*/}*.js' ] ,
311
+ html : [ '<%%= yeoman.dist %>/client /{,*/}*.html' ] ,
312
+ css : [ '<%%= yeoman.dist %>/client /{,*/}*.css' ] ,
313
+ js : [ '<%%= yeoman.dist %>/client /{,*/}*.js' ] ,
314
314
options : {
315
315
assetsDirs : [
316
- '<%%= yeoman.dist %>/public ' ,
317
- '<%%= yeoman.dist %>/public /assets/images'
316
+ '<%%= yeoman.dist %>/client ' ,
317
+ '<%%= yeoman.dist %>/client /assets/images'
318
318
] ,
319
319
// This is so we update image references in our ng-templates
320
320
patterns : {
@@ -332,7 +332,7 @@ module.exports = function (grunt) {
332
332
expand : true ,
333
333
cwd : '<%%= yeoman.client %>/assets/images' ,
334
334
src : '{,*/}*.{png,jpg,jpeg,gif}' ,
335
- dest : '<%%= yeoman.dist %>/public /assets/images'
335
+ dest : '<%%= yeoman.dist %>/client /assets/images'
336
336
} ]
337
337
}
338
338
} ,
@@ -343,7 +343,7 @@ module.exports = function (grunt) {
343
343
expand : true ,
344
344
cwd : '<%%= yeoman.client %>/assets/images' ,
345
345
src : '{,*/}*.svg' ,
346
- dest : '<%%= yeoman.dist %>/public /assets/images'
346
+ dest : '<%%= yeoman.dist %>/client /assets/images'
347
347
} ]
348
348
}
349
349
} ,
@@ -392,7 +392,7 @@ module.exports = function (grunt) {
392
392
// Replace Google CDN references
393
393
cdnify: {
394
394
dist : {
395
- html : [ '<%%= yeoman.dist %>/public /*.html' ]
395
+ html : [ '<%%= yeoman.dist %>/client /*.html' ]
396
396
}
397
397
} ,
398
398
@@ -403,7 +403,7 @@ module.exports = function (grunt) {
403
403
expand : true ,
404
404
dot : true ,
405
405
cwd : '<%%= yeoman.client %>' ,
406
- dest : '<%%= yeoman.dist %>/public ' ,
406
+ dest : '<%%= yeoman.dist %>/client ' ,
407
407
src : [
408
408
'*.{ico,png,txt}' ,
409
409
'.htaccess' ,
@@ -415,7 +415,7 @@ module.exports = function (grunt) {
415
415
} , {
416
416
expand : true ,
417
417
cwd : '.tmp/images' ,
418
- dest : '<%%= yeoman.dist %>/public /assets/images' ,
418
+ dest : '<%%= yeoman.dist %>/client /assets/images' ,
419
419
src : [ 'generated/*' ]
420
420
} , {
421
421
expand : true ,
0 commit comments