1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-12 18:42:18 -05:00
denoland-deno/ext/node/polyfills/internal
Bartek Iwańczuk ce75e31625 refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019)
This commit changes "include_js_files!" macro from "deno_core"
in a way that "dir" option doesn't cause specifiers to be rewritten 
to include it.

Example:
```
include_js_files! {
  dir "js",
  "hello.js",
}
```

The above definition required embedders to use:
`import ... from "internal:<ext_name>/js/hello.js"`. 
But with this change, the "js" directory in which the files are stored
is an implementation detail, which for embedders results in: 
`import ... from "internal:<ext_name>/hello.js"`.

The directory the files are stored in, is an implementation detail and 
in some cases might result in a significant size difference for the 
snapshot. As an example, in "deno_node" extension, we store the 
source code in "polyfills" directory; which resulted in each specifier 
to look like "internal:deno_node/polyfills/<module_name>", but with 
this change it's "internal:deno_node/<module_name>". 

Given that "deno_node" has over 100 files, many of them having 
several import specifiers to the same extension, this change removes
10 characters from each import specifier.
2023-03-10 12:47:26 +09:00
..
console refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
crypto refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
dns refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
fs refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
process feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
readline refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
streams refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
test refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
util refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
assert.mjs refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
async_hooks.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
blob.mjs feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
buffer.d.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
buffer.mjs refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
child_process.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
cli_table.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
constants.ts feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
dgram.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
dtrace.ts feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
error_codes.ts feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
errors.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
event_target.mjs refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
fixed_queue.ts feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
freelist.ts feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
hide_stack_frames.ts feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
http.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
idna.ts refactor: use ops for idna & punycode (#17817) 2023-02-20 18:47:42 +01:00
net.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
normalize_encoding.mjs feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
options.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
primordials.mjs feat(ext/node): embed std/node into the snapshot (#17724) 2023-02-14 17:38:45 +01:00
querystring.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
stream_base_commons.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
timers.mjs refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
url.ts refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
util.mjs refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00
validators.mjs refactor(core): include_js_files! 'dir' option doesn't change specifiers (#18019) 2023-03-10 12:47:26 +09:00