File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ The.Fountain*
2
2
build /node_modules
3
3
node_modules
4
4
build /output
5
+ build /relic
Original file line number Diff line number Diff line change @@ -12,8 +12,10 @@ var outputFolder = 'output/version/' + version
12
12
console . log ( 'Building client' ) ;
13
13
var startTime = Date . now ( ) ;
14
14
15
+ fs . removeSync ( 'relic' ) ;
15
16
fs . removeSync ( 'output' ) ;
16
17
fs . mkdirSync ( 'output' ) ;
18
+ fs . mkdirSync ( 'relic' ) ;
17
19
fs . mkdirSync ( 'output/version' ) ;
18
20
fs . mkdirSync ( outputFolder ) ;
19
21
var rootPath = '..' ;
@@ -86,9 +88,10 @@ function cssIncImages(cssFile) {
86
88
fs . copy ( rootPath + '/css/fonts' , outputFolder + '/css/fonts' , function ( ) {
87
89
88
90
cssIncImages ( outputFolder + '/css/styles.css' ) ;
89
-
91
+ fs . copy ( 'output' , 'relic' , function ( ) {
92
+
90
93
var endTime = ( Date . now ( ) - startTime ) / 1000 ;
91
-
94
+ } ) ;
92
95
} ) ;
93
96
} ) ;
94
97
} ) ;
You can’t perform that action at this time.
0 commit comments