Files
nxdns/licenses/rolldown-mit.txt

35 lines
1.8 KiB
Plaintext

Rolldown is the bundler Vite 8 runs, and it prepends its own CommonJS interop
helpers — the `__commonJS`, `__toESM` and `__copyProps` closures built out of
Object.create, Object.defineProperty and Object.getOwnPropertyNames — to every
chunk that pulls in a CommonJS module. In this build they are the first 554
bytes of web/dist/assets/classes-*.js, which is embedded in every nxdns binary.
Like Vite's preload helper, they are a region of the chunk that no sourcemap
segment maps back to a source file.
The helpers are emitted by the Rust core in @rolldown/binding-<platform>, whose
version is locked to the `rolldown` package recorded in
licenses/dependency-identity.txt; the whole project is under the one licence
below.
MIT License
Copyright (c) 2024-present VoidZero Inc. & Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.