|
11 | 11 | # tsc |
12 | 12 |
|
13 | 13 | /.github/CODEOWNERS @nodejs/tsc |
14 | | -/GOVERNANCE.md @nodejs/tsc |
15 | | -/onboarding.md @nodejs/tsc |
16 | 14 | /CODE_OF_CONDUCT.md @nodejs/tsc |
17 | 15 | /CONTRIBUTING.md @nodejs/tsc |
18 | | -/LICENSE @nodejs/tsc |
19 | 16 | /doc/contributing/*.md @nodejs/tsc |
| 17 | +/GOVERNANCE.md @nodejs/tsc |
| 18 | +/LICENSE @nodejs/tsc |
| 19 | +/onboarding.md @nodejs/tsc |
20 | 20 |
|
21 | 21 | # streams |
22 | 22 |
|
23 | 23 | /lib/_stream* @nodejs/streams |
| 24 | +/lib/internal/streams/* @nodejs/streams |
24 | 25 | /lib/stream.js @nodejs/streams |
25 | 26 | /lib/stream/* @nodejs/streams |
26 | | -/lib/internal/streams/* @nodejs/streams |
27 | 27 |
|
28 | 28 | # net |
29 | 29 |
|
30 | 30 | /deps/ada @nodejs/url |
31 | 31 | /deps/cares @nodejs/net |
32 | | -/doc/api/dns.md @nodejs/net |
33 | 32 | /doc/api/dgram.md @nodejs/net |
| 33 | +/doc/api/dns.md @nodejs/net |
34 | 34 | /doc/api/net.md @nodejs/net |
35 | 35 | /lib/dgram.js @nodejs/net |
36 | 36 | /lib/dns.js @nodejs/net |
37 | | -/lib/net.js @nodejs/net |
38 | | -/lib/url.js @nodejs/url |
39 | 37 | /lib/internal/dgram.js @nodejs/net |
40 | 38 | /lib/internal/dns/* @nodejs/net |
| 39 | +/lib/internal/js_stream_socket.js @nodejs/net |
41 | 40 | /lib/internal/net.js @nodejs/net |
42 | 41 | /lib/internal/socket_list.js @nodejs/net |
43 | | -/lib/internal/js_stream_socket.js @nodejs/net |
44 | 42 | /lib/internal/url.js @nodejs/url |
45 | | -/src/node_url.* @nodejs/url |
| 43 | +/lib/net.js @nodejs/net |
| 44 | +/lib/url.js @nodejs/url |
46 | 45 | /src/cares_wrap.cc @nodejs/net |
47 | 46 | /src/connect_wrap.* @nodejs/net |
48 | 47 | /src/connection_wrap.* @nodejs/net |
49 | 48 | /src/node_sockaddr* @nodejs/net |
| 49 | +/src/node_url.* @nodejs/url |
50 | 50 | /src/tcp_wrap.* @nodejs/net |
51 | 51 | /src/udp_wrap.* @nodejs/net |
52 | 52 |
|
53 | 53 | # tls/crypto |
54 | 54 |
|
| 55 | +/lib/crypto.js @nodejs/crypto |
55 | 56 | /lib/internal/crypto/* @nodejs/crypto |
56 | 57 | /lib/internal/tls/* @nodejs/crypto @nodejs/net |
57 | | -/lib/crypto.js @nodejs/crypto |
58 | 58 | /lib/tls.js @nodejs/crypto @nodejs/net |
59 | | -/src/node_crypto* @nodejs/crypto |
60 | 59 | /src/crypto/* @nodejs/crypto |
| 60 | +/src/node_crypto* @nodejs/crypto |
61 | 61 |
|
62 | 62 | # http |
63 | 63 |
|
|
93 | 93 |
|
94 | 94 | # Node-API |
95 | 95 |
|
96 | | -/src/node_api* @nodejs/node-api |
97 | | -/src/js_native_api* @nodejs/node-api |
98 | | -/doc/contributing/adding-new-napi-api.md @nodejs/node-api |
99 | 96 | /doc/api/n-api.md @nodejs/node-api |
| 97 | +/doc/contributing/adding-new-napi-api.md @nodejs/node-api |
| 98 | +/src/js_native_api* @nodejs/node-api |
| 99 | +/src/node_api* @nodejs/node-api |
100 | 100 |
|
101 | 101 | # gyp |
102 | 102 |
|
|
110 | 110 | /doc/api/wasi.md @nodejs/wasi |
111 | 111 | /lib/wasi.js @nodejs/wasi |
112 | 112 | /src/node_wasi* @nodejs/wasi |
113 | | -/test/wasi/ @nodejs/wasi |
114 | 113 | /test/fixtures/wasi/ @nodejs/wasi |
| 114 | +/test/wasi/ @nodejs/wasi |
115 | 115 |
|
116 | 116 | # Startup |
117 | 117 |
|
118 | | -/test/parallel/test-snapshot-* @nodejs/startup |
119 | | -/test/parallel/test-bootstrap-* @nodejs/startup |
120 | 118 | /benchmark/misc/startup.js @nodejs/startup |
121 | | -/src/node.cc @nodejs/startup |
122 | | -/src/node_realm* @nodejs/startup @nodejs/realm |
| 119 | +/lib/internal/bootstrap/* @nodejs/startup |
123 | 120 | /src/node_builtins* @nodejs/startup |
| 121 | +/src/node_realm* @nodejs/startup @nodejs/realm |
124 | 122 | /src/node_snapshot* @nodejs/startup |
125 | | -/lib/internal/bootstrap/* @nodejs/startup |
| 123 | +/src/node.cc @nodejs/startup |
| 124 | +/test/parallel/test-bootstrap-* @nodejs/startup |
| 125 | +/test/parallel/test-snapshot-* @nodejs/startup |
126 | 126 | /tools/snapshot/* @nodejs/startup |
127 | 127 |
|
128 | 128 | # V8 |
|
137 | 137 |
|
138 | 138 | # Test runner |
139 | 139 |
|
140 | | -/test/parallel/test-runner-* @nodejs/test_runner |
141 | 140 | /doc/api/test.md @nodejs/test_runner |
142 | | -/lib/test.js @nodejs/test_runner |
143 | 141 | /lib/internal/main/test_runner.js @nodejs/test_runner |
144 | 142 | /lib/internal/test_runner/* @nodejs/test_runner |
| 143 | +/lib/test.js @nodejs/test_runner |
| 144 | +/test/parallel/test-runner-* @nodejs/test_runner |
145 | 145 |
|
146 | 146 | # Single Executable Applications |
147 | 147 | /deps/postject @nodejs/single-executable |
|
153 | 153 | /tools/dep_updaters/update-postject.sh @nodejs/single-executable |
154 | 154 |
|
155 | 155 | # Permission Model |
156 | | -/src/permission/* @nodejs/security-wg |
157 | 156 | /doc/api/permissions.md @nodejs/security-wg |
158 | 157 | /lib/internal/process/permission.js @nodejs/security-wg |
| 158 | +/src/permission/* @nodejs/security-wg |
159 | 159 |
|
160 | 160 | # Dependency Update Tools |
161 | 161 |
|
|
0 commit comments