Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

22
node_modules/@rspack/binding/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,22 @@
MIT License
Copyright (c) 2022-present Bytedance, Inc. and its affiliates.
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.

17
node_modules/@rspack/binding/README.md generated vendored Normal file
View File

@@ -0,0 +1,17 @@
<picture>
<img alt="Rspack Banner" src="https://assets.rspack.rs/rspack/rspack-banner.png">
</picture>
# @rspack/binding
Private node binding crate for rspack.
> Rspack's internal package, don't use it directly in your project, This package does _NOT_ follow [semantic versioning](https://semver.org/).
## Documentation
See [https://rspack.rs](https://rspack.rs) for details.
## License
Rspack is [MIT licensed](https://github.com/web-infra-dev/rspack/blob/main/LICENSE).

8
node_modules/@rspack/binding/binding.d.ts generated vendored Normal file
View File

@@ -0,0 +1,8 @@
/**
* We manually create binding.d.ts and re-export everything of the dts generated by napi to fix the cjs-esm interop
*/
import * as binding from "./napi-binding";
export * from "./napi-binding"
export default binding;

406
node_modules/@rspack/binding/binding.js generated vendored Normal file
View File

@@ -0,0 +1,406 @@
// prettier-ignore
/* eslint-disable */
// @ts-nocheck
/* auto-generated by NAPI-RS */
const { createRequire } = require('node:module')
require = createRequire(__filename)
const { readFileSync } = require('node:fs')
let nativeBinding = null
const loadErrors = []
const isMusl = () => {
let musl = false
if (process.platform === 'linux') {
musl = isMuslFromFilesystem()
if (musl === null) {
musl = isMuslFromReport()
}
if (musl === null) {
musl = isMuslFromChildProcess()
}
}
return musl
}
const isFileMusl = (f) => f.includes('libc.musl-') || f.includes('ld-musl-')
const isMuslFromFilesystem = () => {
try {
return readFileSync('/usr/bin/ldd', 'utf-8').includes('musl')
} catch {
return null
}
}
const isMuslFromReport = () => {
let report = null
if (typeof process.report?.getReport === 'function') {
process.report.excludeNetwork = true
report = process.report.getReport()
}
if (!report) {
return null
}
if (report.header && report.header.glibcVersionRuntime) {
return false
}
if (Array.isArray(report.sharedObjects)) {
if (report.sharedObjects.some(isFileMusl)) {
return true
}
}
return false
}
const isMuslFromChildProcess = () => {
try {
return require('child_process').execSync('ldd --version', { encoding: 'utf8' }).includes('musl')
} catch (e) {
// If we reach this case, we don't know if the system is musl or not, so is better to just fallback to false
return false
}
}
function requireNative() {
if (process.env.NAPI_RS_NATIVE_LIBRARY_PATH) {
try {
return require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH);
} catch (err) {
loadErrors.push(err)
}
} else if (process.platform === 'android') {
if (process.arch === 'arm64') {
try {
return require('./rspack.android-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-android-arm64')
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm') {
try {
return require('./rspack.android-arm-eabi.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-android-arm-eabi')
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`))
}
} else if (process.platform === 'win32') {
if (process.arch === 'x64') {
try {
return require('./rspack.win32-x64-msvc.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-win32-x64-msvc')
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'ia32') {
try {
return require('./rspack.win32-ia32-msvc.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-win32-ia32-msvc')
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm64') {
try {
return require('./rspack.win32-arm64-msvc.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-win32-arm64-msvc')
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`))
}
} else if (process.platform === 'darwin') {
try {
return require('./rspack.darwin-universal.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-darwin-universal')
} catch (e) {
loadErrors.push(e)
}
if (process.arch === 'x64') {
try {
return require('./rspack.darwin-x64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-darwin-x64')
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm64') {
try {
return require('./rspack.darwin-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-darwin-arm64')
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`))
}
} else if (process.platform === 'freebsd') {
if (process.arch === 'x64') {
try {
return require('./rspack.freebsd-x64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-freebsd-x64')
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm64') {
try {
return require('./rspack.freebsd-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-freebsd-arm64')
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`))
}
} else if (process.platform === 'linux') {
if (process.arch === 'x64') {
if (isMusl()) {
try {
return require('./rspack.linux-x64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-x64-musl')
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./rspack.linux-x64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-x64-gnu')
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'arm64') {
if (isMusl()) {
try {
return require('./rspack.linux-arm64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-arm64-musl')
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./rspack.linux-arm64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-arm64-gnu')
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'arm') {
if (isMusl()) {
try {
return require('./rspack.linux-arm-musleabihf.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-arm-musleabihf')
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./rspack.linux-arm-gnueabihf.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-arm-gnueabihf')
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'riscv64') {
if (isMusl()) {
try {
return require('./rspack.linux-riscv64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-riscv64-musl')
} catch (e) {
loadErrors.push(e)
}
} else {
try {
return require('./rspack.linux-riscv64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-riscv64-gnu')
} catch (e) {
loadErrors.push(e)
}
}
} else if (process.arch === 'ppc64') {
try {
return require('./rspack.linux-ppc64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-ppc64-gnu')
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 's390x') {
try {
return require('./rspack.linux-s390x-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-s390x-gnu')
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on Linux: ${process.arch}`))
}
} else if (process.platform === 'openharmony') {
if (process.arch === 'arm64') {
try {
return require('./rspack.linux-arm64-ohos.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-arm64-ohos')
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'x64') {
try {
return require('./rspack.linux-x64-ohos.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-x64-ohos')
} catch (e) {
loadErrors.push(e)
}
} else if (process.arch === 'arm') {
try {
return require('./rspack.linux-arm-ohos.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@rspack/binding-linux-arm-ohos')
} catch (e) {
loadErrors.push(e)
}
} else {
loadErrors.push(new Error(`Unsupported architecture on OpenHarmony: ${process.arch}`))
}
} else {
loadErrors.push(new Error(`Unsupported OS: ${process.platform}, architecture: ${process.arch}`))
}
}
nativeBinding = requireNative()
if (!nativeBinding || process.env.NAPI_RS_FORCE_WASI) {
try {
nativeBinding = require('./rspack.wasi.cjs')
} catch (err) {
if (process.env.NAPI_RS_FORCE_WASI) {
loadErrors.push(err)
}
}
if (!nativeBinding) {
try {
nativeBinding = require('@rspack/binding-wasm32-wasi')
} catch (err) {
if (process.env.NAPI_RS_FORCE_WASI) {
loadErrors.push(err)
}
}
}
}
if (!nativeBinding && globalThis.process?.versions?.["webcontainer"]) {
try {
nativeBinding = require("./webcontainer-fallback.cjs")
} catch (err) {
if (process.env.NAPI_RS_FORCE_WASI) {
loadErrors.push(err)
}
}
}
if (!nativeBinding) {
if (loadErrors.length > 0) {
throw new Error(
`Cannot find native binding. ` +
`npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). ` +
'Please try `npm i` again after removing both package-lock.json and node_modules directory.' +
`\n\n${loadErrors.map((e) => e.message).join('\n')}`,
{ cause: loadErrors }
)
}
throw new Error(`Failed to load native binding`)
}
module.exports.default = module.exports = nativeBinding

3139
node_modules/@rspack/binding/napi-binding.d.ts generated vendored Normal file

File diff suppressed because it is too large Load Diff

78
node_modules/@rspack/binding/package.json generated vendored Normal file
View File

@@ -0,0 +1,78 @@
{
"name": "@rspack/binding",
"version": "1.6.8",
"license": "MIT",
"description": "Node binding for rspack",
"main": "binding.js",
"types": "binding.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"binding.js",
"binding.d.ts",
"napi-binding.d.ts",
"webcontainer-fallback.cjs"
],
"homepage": "https://rspack.rs",
"bugs": "https://github.com/web-infra-dev/rspack/issues",
"repository": "web-infra-dev/rspack",
"devDependencies": {
"@napi-rs/cli": "3.0.4",
"@napi-rs/wasm-runtime": "1.0.7",
"emnapi": "^1.7.1",
"typescript": "^5.9.3"
},
"napi": {
"binaryName": "rspack",
"packageName": "@rspack/binding",
"targets": [
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"aarch64-unknown-linux-gnu",
"aarch64-apple-darwin",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"wasm32-wasip1-threads"
],
"wasm": {
"initialMemory": 16384,
"browser": {
"fs": true,
"asyncInit": true,
"buffer": true
}
}
},
"optionalDependencies": {
"@rspack/binding-darwin-arm64": "1.6.8",
"@rspack/binding-win32-arm64-msvc": "1.6.8",
"@rspack/binding-linux-arm64-gnu": "1.6.8",
"@rspack/binding-linux-arm64-musl": "1.6.8",
"@rspack/binding-wasm32-wasi": "1.6.8",
"@rspack/binding-darwin-x64": "1.6.8",
"@rspack/binding-win32-ia32-msvc": "1.6.8",
"@rspack/binding-linux-x64-musl": "1.6.8",
"@rspack/binding-linux-x64-gnu": "1.6.8",
"@rspack/binding-win32-x64-msvc": "1.6.8"
},
"scripts": {
"build:dev": "node scripts/build.js",
"build:debug": "node scripts/build.js --profile release-debug",
"build:ci": "node scripts/build.js --profile ci",
"build:profiling": "node scripts/build.js --profile profiling",
"build:release": "node scripts/build.js --profile release",
"build:dev:wasm": "DISABLE_PLUGIN=1 RUST_TARGET=wasm32-wasip1-threads node scripts/build.js",
"build:release:wasm": "DISABLE_PLUGIN=1 RUST_TARGET=wasm32-wasip1-threads node scripts/build.js --profile release-wasi",
"build:dev:browser": "DISABLE_PLUGIN=1 RUST_TARGET=wasm32-wasip1-threads RSPACK_TARGET_BROWSER=1 node scripts/build.js",
"build:release:browser": "DISABLE_PLUGIN=1 RUST_TARGET=wasm32-wasip1-threads RSPACK_TARGET_BROWSER=1 node scripts/build.js --profile release-wasi",
"move-binding": "node scripts/move-binding",
"test": "tsc -p tsconfig.type-test.json"
}
}

23
node_modules/@rspack/binding/webcontainer-fallback.cjs generated vendored Normal file
View File

@@ -0,0 +1,23 @@
const fs = require('node:fs');
const path = require('node:path');
const childProcess = require('node:child_process');
const pkg = JSON.parse(
fs.readFileSync(path.join(__dirname, 'package.json'), 'utf-8'),
);
const version = pkg.version;
const baseDir = `/tmp/rspack-${version}`;
const bindingEntry = `${baseDir}/node_modules/${pkg.name}-wasm32-wasi/rspack.wasi.cjs`;
if (!fs.existsSync(bindingEntry)) {
fs.rmSync(baseDir, { recursive: true, force: true });
fs.mkdirSync(baseDir, { recursive: true });
const bindingPkg = `${pkg.name}-wasm32-wasi@${version}`;
console.log(`[rspack] Downloading ${bindingPkg} on WebContainer...`);
childProcess.execFileSync('pnpm', ['i', bindingPkg], {
cwd: baseDir,
stdio: 'inherit',
});
}
module.exports = require(bindingEntry);