@@ -22,14 +22,13 @@ var chalk = require('chalk');
22
22
var fs = require ( 'fs-extra' ) ;
23
23
var path = require ( 'path' ) ;
24
24
var url = require ( 'url' ) ;
25
- var filesize = require ( 'filesize' ) ;
26
- var gzipSize = require ( 'gzip-size' ) . sync ;
27
25
var webpack = require ( 'webpack' ) ;
28
26
var config = require ( '../config/webpack.config.prod' ) ;
29
27
var paths = require ( '../config/paths' ) ;
30
28
var checkRequiredFiles = require ( 'react-dev-utils/checkRequiredFiles' ) ;
31
- var recursive = require ( 'recursive-readdir' ) ;
32
- var stripAnsi = require ( 'strip-ansi' ) ;
29
+ var FileSizeReporter = require ( 'react-dev-utils/FileSizeReporter' ) ;
30
+ var measureFileSizesBeforeBuild = FileSizeReporter . measureFileSizesBeforeBuild ;
31
+ var printFileSizesAfterBuild = FileSizeReporter . printFileSizesAfterBuild ;
33
32
34
33
var useYarn = fs . existsSync ( paths . yarnLockFile ) ;
35
34
@@ -38,88 +37,20 @@ if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
38
37
process . exit ( 1 ) ;
39
38
}
40
39
41
- // Input: /User/dan/app/build/static/js/main.82be8.js
42
- // Output: /static/js/main.js
43
- function removeFileNameHash ( fileName ) {
44
- return fileName
45
- . replace ( paths . appBuild , '' )
46
- . replace ( / \/ ? ( .* ) ( \. \w + ) ( \. j s | \. c s s ) / , ( match , p1 , p2 , p3 ) => p1 + p3 ) ;
47
- }
48
-
49
- // Input: 1024, 2048
50
- // Output: "(+1 KB)"
51
- function getDifferenceLabel ( currentSize , previousSize ) {
52
- var FIFTY_KILOBYTES = 1024 * 50 ;
53
- var difference = currentSize - previousSize ;
54
- var fileSize = ! Number . isNaN ( difference ) ? filesize ( difference ) : 0 ;
55
- if ( difference >= FIFTY_KILOBYTES ) {
56
- return chalk . red ( '+' + fileSize ) ;
57
- } else if ( difference < FIFTY_KILOBYTES && difference > 0 ) {
58
- return chalk . yellow ( '+' + fileSize ) ;
59
- } else if ( difference < 0 ) {
60
- return chalk . green ( fileSize ) ;
61
- } else {
62
- return '' ;
63
- }
64
- }
65
-
66
40
// First, read the current file sizes in build directory.
67
41
// This lets us display how much they changed later.
68
- recursive ( paths . appBuild , ( err , fileNames ) => {
69
- var previousSizeMap = ( fileNames || [ ] )
70
- . filter ( fileName => / \. ( j s | c s s ) $ / . test ( fileName ) )
71
- . reduce ( ( memo , fileName ) => {
72
- var contents = fs . readFileSync ( fileName ) ;
73
- var key = removeFileNameHash ( fileName ) ;
74
- memo [ key ] = gzipSize ( contents ) ;
75
- return memo ;
76
- } , { } ) ;
77
-
42
+ measureFileSizesBeforeBuild ( paths . appBuild ) . then ( previousFileSizes => {
78
43
// Remove all content but keep the directory so that
79
44
// if you're in it, you don't end up in Trash
80
45
fs . emptyDirSync ( paths . appBuild ) ;
81
46
82
47
// Start the webpack build
83
- build ( previousSizeMap ) ;
48
+ build ( previousFileSizes ) ;
84
49
85
50
// Merge with the public folder
86
51
copyPublicFolder ( ) ;
87
52
} ) ;
88
53
89
- // Print a detailed summary of build files.
90
- function printFileSizes ( stats , previousSizeMap ) {
91
- var assets = stats . toJson ( ) . assets
92
- . filter ( asset => / \. ( j s | c s s ) $ / . test ( asset . name ) )
93
- . map ( asset => {
94
- var fileContents = fs . readFileSync ( paths . appBuild + '/' + asset . name ) ;
95
- var size = gzipSize ( fileContents ) ;
96
- var previousSize = previousSizeMap [ removeFileNameHash ( asset . name ) ] ;
97
- var difference = getDifferenceLabel ( size , previousSize ) ;
98
- return {
99
- folder : path . join ( 'build' , path . dirname ( asset . name ) ) ,
100
- name : path . basename ( asset . name ) ,
101
- size : size ,
102
- sizeLabel : filesize ( size ) + ( difference ? ' (' + difference + ')' : '' )
103
- } ;
104
- } ) ;
105
- assets . sort ( ( a , b ) => b . size - a . size ) ;
106
- var longestSizeLabelLength = Math . max . apply ( null ,
107
- assets . map ( a => stripAnsi ( a . sizeLabel ) . length )
108
- ) ;
109
- assets . forEach ( asset => {
110
- var sizeLabel = asset . sizeLabel ;
111
- var sizeLength = stripAnsi ( sizeLabel ) . length ;
112
- if ( sizeLength < longestSizeLabelLength ) {
113
- var rightPadding = ' ' . repeat ( longestSizeLabelLength - sizeLength ) ;
114
- sizeLabel += rightPadding ;
115
- }
116
- console . log (
117
- ' ' + sizeLabel +
118
- ' ' + chalk . dim ( asset . folder + path . sep ) + chalk . cyan ( asset . name )
119
- ) ;
120
- } ) ;
121
- }
122
-
123
54
// Print out errors
124
55
function printErrors ( summary , errors ) {
125
56
console . log ( chalk . red ( summary ) ) ;
@@ -131,7 +62,7 @@ function printErrors(summary, errors) {
131
62
}
132
63
133
64
// Create the production build and print the deployment instructions.
134
- function build ( previousSizeMap ) {
65
+ function build ( previousFileSizes ) {
135
66
console . log ( 'Creating an optimized production build...' ) ;
136
67
webpack ( config ) . run ( ( err , stats ) => {
137
68
if ( err ) {
@@ -154,7 +85,7 @@ function build(previousSizeMap) {
154
85
155
86
console . log ( 'File sizes after gzip:' ) ;
156
87
console . log ( ) ;
157
- printFileSizes ( stats , previousSizeMap ) ;
88
+ printFileSizesAfterBuild ( stats , previousFileSizes ) ;
158
89
console . log ( ) ;
159
90
160
91
var openCommand = process . platform === 'win32' ? 'start' : 'open' ;
0 commit comments