File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ module.exports = function(grunt) {
96
96
text = text . replace ( '{{sdk_version}}' , package_info . version ) ;
97
97
text = text . replace ( '{{description}}' , package_info . description ) ;
98
98
text = text . replace ( '{{license}}' , package_info . license ) ;
99
- fs . writeFile ( './dist/ bower.json' , text , function ( e ) {
99
+ fs . writeFile ( './bower.json' , text , function ( e ) {
100
100
if ( e ) {
101
101
console . err ( 'A problem occured while creating bower.json' ) ;
102
102
done ( ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " oauth-js" ,
3
3
"version" : " {{sdk_version}}" ,
4
- "main" : " oauth.min.js" ,
4
+ "main" : " dist/ oauth.min.js" ,
5
5
"description" : " {{description}}" ,
6
- "license" : " {{license}}"
6
+ "license" : " {{license}}" ,
7
+ "ignore" : [
8
+ " coffee" ,
9
+ " coverage" ,
10
+ " js" ,
11
+ " node_modules" ,
12
+ " tests" ,
13
+ " templates" ,
14
+ " Gruntfile.js" ,
15
+ " package.json" ,
16
+ " .gitignore"
17
+ ]
7
18
}
You can’t perform that action at this time.
0 commit comments