File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 8989 "gulp" : " ^3.9.1" ,
9090 "gulp-ejs" : " ^3.1.3" ,
9191 "gulp-zip" : " ^4.1.0" ,
92+ "lodash" : " 4.17.10" ,
9293 "merge-stream" : " ^1.0.1" ,
9394 "package-json" : " ^4.0.1" ,
9495 "semver" : " 5.5.0" ,
Original file line number Diff line number Diff line change 11'use strict' ;
22
3+ const { padStart } = require ( 'lodash' ) ;
34const { formatPackageUpgrades } = require ( './ui' ) ;
45const { getLibraries, getUpgradeVersions } = require ( './packages' ) ;
56
@@ -14,7 +15,7 @@ function formatVersionFolder(version) {
1415
1516 return version
1617 . split ( '.' )
17- . map ( n => n . padStart ( versionFolderPadding , '0' ) )
18+ . map ( n => padStart ( n , versionFolderPadding , '0' ) )
1819 . join ( '_' ) ;
1920}
2021
Original file line number Diff line number Diff line change @@ -2745,6 +2745,10 @@ lodash.templatesettings@^3.0.0:
27452745 lodash._reinterpolate "^3.0.0"
27462746 lodash.escape "^3.0.0"
27472747
2748+ lodash@4.17.10 :
2749+ version "4.17.10"
2750+ resolved "https://www.myget.org/F/dnn-software-public/npm/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
2751+
27482752lodash@^3.3.1 :
27492753 version "3.10.1"
27502754 resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6"
You can’t perform that action at this time.
0 commit comments