File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ The.Fountain*
22build /node_modules
33node_modules
44build /output
5+ build /relic
Original file line number Diff line number Diff line change @@ -12,8 +12,10 @@ var outputFolder = 'output/version/' + version
1212console . log ( 'Building client' ) ;
1313var startTime = Date . now ( ) ;
1414
15+ fs . removeSync ( 'relic' ) ;
1516fs . removeSync ( 'output' ) ;
1617fs . mkdirSync ( 'output' ) ;
18+ fs . mkdirSync ( 'relic' ) ;
1719fs . mkdirSync ( 'output/version' ) ;
1820fs . mkdirSync ( outputFolder ) ;
1921var rootPath = '..' ;
@@ -86,9 +88,10 @@ function cssIncImages(cssFile) {
8688 fs . copy ( rootPath + '/css/fonts' , outputFolder + '/css/fonts' , function ( ) {
8789
8890cssIncImages ( outputFolder + '/css/styles.css' ) ;
89-
91+ fs . copy ( 'output' , 'relic' , function ( ) {
92+
9093 var endTime = ( Date . now ( ) - startTime ) / 1000 ;
91-
94+ } ) ;
9295 } ) ;
9396 } ) ;
9497 } ) ;
You can’t perform that action at this time.
0 commit comments