File tree Expand file tree Collapse file tree 7 files changed +16
-6
lines changed
Expand file tree Collapse file tree 7 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " SpringRollStudio" ,
3- "version" : " 0.2.4 " ,
3+ "version" : " 0.2.5 " ,
44 "private" : true ,
55 "dependencies" : {
66 "jqueryui" : " *" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " SpringRollStudio" ,
33 "description" : " Application for SpringRoll projects" ,
4- "version" : " 0.2.4 " ,
4+ "version" : " 0.2.5 " ,
55 "repository" : {
66 "type" : " git" ,
77 "url" : " https://github.com/SpringRoll/SpringRollStudio"
Original file line number Diff line number Diff line change 44# These three must be integers
55!define VERSIONMAJOR 0
66!define VERSIONMINOR 2
7- !define VERSIONBUILD 4
7+ !define VERSIONBUILD 5
88# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
99# It is possible to use "mailto:" links in here to open the email client
1010!define HELPURL " https://github.com/SpringRoll/SpringRollStudio/issues"
Original file line number Diff line number Diff line change 44# These three must be integers
55!define VERSIONMAJOR 0
66!define VERSIONMINOR 2
7- !define VERSIONBUILD 4
7+ !define VERSIONBUILD 5
88# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
99# It is possible to use "mailto:" links in here to open the email client
1010!define HELPURL " https://github.com/SpringRoll/SpringRollStudio/issues"
Original file line number Diff line number Diff line change 11{
22 "name" : " SpringRollStudio" ,
33 "private" : true ,
4- "version" : " 0.2.4 " ,
4+ "version" : " 0.2.5 " ,
55 "dependencies" : {
66 "grunt" : " ^0.4.5" ,
77 "grunt-contrib-copy" : " ^0.7.0" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " SpringRollStudio" ,
3- "version" : " 0.2.4 " ,
3+ "version" : " 0.2.5 " ,
44 "main" : [
55 " components/node-webkit-app/src/utils/UpdateChecker.js" ,
66 " components/node-webkit-app/src/utils/Browser.js" ,
Original file line number Diff line number Diff line change 77 var path = require ( 'path' ) ;
88 var replace = require ( "replace" ) ;
99 var glob = require ( "glob" ) ;
10+ var _ = require ( 'lodash' ) ;
1011 }
1112
1213 // Import classes
106107 options . librariesDebug
107108 ) ;
108109
110+ // Either the build has librariesCopy or the options have some libraries copy
111+ if ( ! _ . isEmpty ( build . librariesCopy ) || ! _ . isEmpty ( options . librariesCopy ) )
112+ {
113+ build . librariesCopy = _ . extend ( { } ,
114+ options . librariesCopy ,
115+ build . librariesCopy
116+ ) ;
117+ }
118+
109119 this . writeJSON ( Installer . FILE , build ) ;
110120
111121 // Replace text in the files
You can’t perform that action at this time.
0 commit comments