mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
src: put bootstrappers in lib/internal/bootstrap/
Create `lib/internal/bootstrap/` and put bootstrappers there: Before: ``` lib/internal ├── ... ├── bootstrap_loaders.js └── bootstrap_node.js ``` After: ``` lib/internal ├── ... └── bootstrap ├── loaders.js └── node.js ``` PR-URL: https://github.com/nodejs/node/pull/19177 Refs: https://github.com/nodejs/node/pull/19112 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
This commit is contained in:
parent
d9d0a97541
commit
8484b40b3d
32 changed files with 84 additions and 81 deletions
|
@ -36,7 +36,7 @@ const { openSync, closeSync, readSync } = require('fs');
|
|||
const { parseExpressionAt } = require('internal/deps/acorn/dist/acorn');
|
||||
const { inspect } = require('util');
|
||||
const { EOL } = require('os');
|
||||
const { NativeModule } = require('internal/bootstrap_loaders');
|
||||
const { NativeModule } = require('internal/bootstrap/loaders');
|
||||
|
||||
// Escape control characters but not \n and \t to keep the line breaks and
|
||||
// indentation intact.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue