Skip to content

Commit 659428f

Browse files
danbevitaloacasas
authored andcommitted
build: sort sources alphabetically
The header files in the sources list are sorted alphabetically but not the c++ source code files. This commit sorts the c++ source code file names. PR-URL: #10892 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Johan Bergström <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 3cd9833 commit 659428f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

node.gyp

+4-4
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,13 @@
145145
],
146146

147147
'sources': [
148-
'src/debug-agent.cc',
149148
'src/async-wrap.cc',
150-
'src/env.cc',
151-
'src/fs_event_wrap.cc',
152149
'src/cares_wrap.cc',
153150
'src/connection_wrap.cc',
154151
'src/connect_wrap.cc',
152+
'src/debug-agent.cc',
153+
'src/env.cc',
154+
'src/fs_event_wrap.cc',
155155
'src/handle_wrap.cc',
156156
'src/js_stream.cc',
157157
'src/node.cc',
@@ -174,6 +174,7 @@
174174
'src/node_zlib.cc',
175175
'src/node_i18n.cc',
176176
'src/pipe_wrap.cc',
177+
'src/process_wrap.cc',
177178
'src/signal_wrap.cc',
178179
'src/spawn_sync.cc',
179180
'src/string_bytes.cc',
@@ -183,7 +184,6 @@
183184
'src/tcp_wrap.cc',
184185
'src/timer_wrap.cc',
185186
'src/tty_wrap.cc',
186-
'src/process_wrap.cc',
187187
'src/udp_wrap.cc',
188188
'src/util.cc',
189189
'src/uv.cc',

0 commit comments

Comments
 (0)