Skip to content

Commit cda5937

Browse files
danbevMylesBorins
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 d766f5e commit cda5937

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

node.gyp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,13 @@
138138
],
139139

140140
'sources': [
141-
'src/debug-agent.cc',
142141
'src/async-wrap.cc',
143-
'src/env.cc',
144-
'src/fs_event_wrap.cc',
145142
'src/cares_wrap.cc',
146143
'src/connection_wrap.cc',
147144
'src/connect_wrap.cc',
145+
'src/debug-agent.cc',
146+
'src/env.cc',
147+
'src/fs_event_wrap.cc',
148148
'src/handle_wrap.cc',
149149
'src/js_stream.cc',
150150
'src/node.cc',
@@ -164,6 +164,7 @@
164164
'src/node_zlib.cc',
165165
'src/node_i18n.cc',
166166
'src/pipe_wrap.cc',
167+
'src/process_wrap.cc',
167168
'src/signal_wrap.cc',
168169
'src/spawn_sync.cc',
169170
'src/string_bytes.cc',
@@ -173,7 +174,6 @@
173174
'src/tcp_wrap.cc',
174175
'src/timer_wrap.cc',
175176
'src/tty_wrap.cc',
176-
'src/process_wrap.cc',
177177
'src/udp_wrap.cc',
178178
'src/util.cc',
179179
'src/uv.cc',

0 commit comments

Comments
 (0)