This repository was archived by the owner on Dec 1, 2023. It is now read-only.
File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ module.exports = function (grunt) {
347
347
files : [ {
348
348
expand : true ,
349
349
cwd : '<%= yo.dist %>' ,
350
- src : '* ' ,
350
+ src : '{,*/}*.js ' ,
351
351
dest : '<%= yo.dist %>'
352
352
} ]
353
353
} ,
@@ -415,11 +415,15 @@ module.exports = function (grunt) {
415
415
dist : {
416
416
options : {
417
417
report : 'gzip' ,
418
- sourceMap : '<%= yo.dist %>/<%= pkg.name %>.min.map'
418
+ sourceMap : '<%= yo.dist %>/<%= pkg.name %>.min.map' ,
419
+ sourceMappingURL : '<%= pkg.name %>.min.map'
419
420
} ,
420
421
files : [ {
421
- dest : '<%= yo.dist %>/<%= pkg.name %>.min.js' ,
422
- src : '<%= yo.dist %>/<%= pkg.name %>.js'
422
+ expand : true ,
423
+ cwd : '<%= yo.dist %>' ,
424
+ src : '{,*/}*.js' ,
425
+ dest : '<%= yo.dist %>' ,
426
+ ext : '.min.js'
423
427
} ]
424
428
}
425
429
} ,
@@ -468,6 +472,7 @@ module.exports = function (grunt) {
468
472
'ngmin:dist' ,
469
473
'ngmin:modules' ,
470
474
'uglify:dist' ,
475
+ 'concat:banner'
471
476
] ) ;
472
477
473
478
grunt . registerTask ( 'docs' , [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " angular-strap" ,
3
3
"description" : " AngularStrap - AngularJS directives for Twitter Bootstrap" ,
4
- "version" : " 2.0.0-b .1" ,
4
+ "version" : " 2.0.0-beta .1" ,
5
5
"dependencies" : {
6
6
"angular" : " ~1.2.5" ,
7
7
"angular-animate" : " ~1.2.5" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " angular-strap" ,
3
3
"description" : " AngularStrap - AngularJS directives for Twitter Bootstrap" ,
4
- "version" : " 2.0.0-b .1" ,
4
+ "version" : " 2.0.0-beta .1" ,
5
5
"homepage" : " http://mgcrea.github.io/angular-strap" ,
6
6
"author" : " Olivier Louvignes <olivier@mg-crea.com>" ,
7
7
"repository" : {
You can’t perform that action at this time.
0 commit comments