| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575 |
- // prettier-ignore
- /* eslint-disable */
- // @ts-nocheck
- /* auto-generated by NAPI-RS */
- 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('./tailwindcss-oxide.android-arm64.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-android-arm64')
- const bindingPackageVersion = require('@tailwindcss/oxide-android-arm64/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else if (process.arch === 'arm') {
- try {
- return require('./tailwindcss-oxide.android-arm-eabi.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-android-arm-eabi')
- const bindingPackageVersion = require('@tailwindcss/oxide-android-arm-eabi/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } 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') {
- if (process.config?.variables?.shlib_suffix === 'dll.a' || process.config?.variables?.node_target_type === 'shared_library') {
- try {
- return require('./tailwindcss-oxide.win32-x64-gnu.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-win32-x64-gnu')
- const bindingPackageVersion = require('@tailwindcss/oxide-win32-x64-gnu/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else {
- try {
- return require('./tailwindcss-oxide.win32-x64-msvc.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-win32-x64-msvc')
- const bindingPackageVersion = require('@tailwindcss/oxide-win32-x64-msvc/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- }
- } else if (process.arch === 'ia32') {
- try {
- return require('./tailwindcss-oxide.win32-ia32-msvc.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-win32-ia32-msvc')
- const bindingPackageVersion = require('@tailwindcss/oxide-win32-ia32-msvc/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else if (process.arch === 'arm64') {
- try {
- return require('./tailwindcss-oxide.win32-arm64-msvc.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-win32-arm64-msvc')
- const bindingPackageVersion = require('@tailwindcss/oxide-win32-arm64-msvc/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else {
- loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`))
- }
- } else if (process.platform === 'darwin') {
- try {
- return require('./tailwindcss-oxide.darwin-universal.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-darwin-universal')
- const bindingPackageVersion = require('@tailwindcss/oxide-darwin-universal/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- if (process.arch === 'x64') {
- try {
- return require('./tailwindcss-oxide.darwin-x64.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-darwin-x64')
- const bindingPackageVersion = require('@tailwindcss/oxide-darwin-x64/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else if (process.arch === 'arm64') {
- try {
- return require('./tailwindcss-oxide.darwin-arm64.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-darwin-arm64')
- const bindingPackageVersion = require('@tailwindcss/oxide-darwin-arm64/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } 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('./tailwindcss-oxide.freebsd-x64.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-freebsd-x64')
- const bindingPackageVersion = require('@tailwindcss/oxide-freebsd-x64/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else if (process.arch === 'arm64') {
- try {
- return require('./tailwindcss-oxide.freebsd-arm64.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-freebsd-arm64')
- const bindingPackageVersion = require('@tailwindcss/oxide-freebsd-arm64/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } 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('./tailwindcss-oxide.linux-x64-musl.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-x64-musl')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-x64-musl/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else {
- try {
- return require('./tailwindcss-oxide.linux-x64-gnu.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-x64-gnu')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-x64-gnu/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- }
- } else if (process.arch === 'arm64') {
- if (isMusl()) {
- try {
- return require('./tailwindcss-oxide.linux-arm64-musl.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-arm64-musl')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-arm64-musl/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else {
- try {
- return require('./tailwindcss-oxide.linux-arm64-gnu.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-arm64-gnu')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-arm64-gnu/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- }
- } else if (process.arch === 'arm') {
- if (isMusl()) {
- try {
- return require('./tailwindcss-oxide.linux-arm-musleabihf.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-arm-musleabihf')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-arm-musleabihf/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else {
- try {
- return require('./tailwindcss-oxide.linux-arm-gnueabihf.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-arm-gnueabihf')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-arm-gnueabihf/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- }
- } else if (process.arch === 'loong64') {
- if (isMusl()) {
- try {
- return require('./tailwindcss-oxide.linux-loong64-musl.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-loong64-musl')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-loong64-musl/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else {
- try {
- return require('./tailwindcss-oxide.linux-loong64-gnu.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-loong64-gnu')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-loong64-gnu/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- }
- } else if (process.arch === 'riscv64') {
- if (isMusl()) {
- try {
- return require('./tailwindcss-oxide.linux-riscv64-musl.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-riscv64-musl')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-riscv64-musl/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else {
- try {
- return require('./tailwindcss-oxide.linux-riscv64-gnu.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-riscv64-gnu')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-riscv64-gnu/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- }
- } else if (process.arch === 'ppc64') {
- try {
- return require('./tailwindcss-oxide.linux-ppc64-gnu.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-ppc64-gnu')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-ppc64-gnu/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else if (process.arch === 's390x') {
- try {
- return require('./tailwindcss-oxide.linux-s390x-gnu.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-linux-s390x-gnu')
- const bindingPackageVersion = require('@tailwindcss/oxide-linux-s390x-gnu/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } 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('./tailwindcss-oxide.openharmony-arm64.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-openharmony-arm64')
- const bindingPackageVersion = require('@tailwindcss/oxide-openharmony-arm64/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else if (process.arch === 'x64') {
- try {
- return require('./tailwindcss-oxide.openharmony-x64.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-openharmony-x64')
- const bindingPackageVersion = require('@tailwindcss/oxide-openharmony-x64/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } catch (e) {
- loadErrors.push(e)
- }
- } else if (process.arch === 'arm') {
- try {
- return require('./tailwindcss-oxide.openharmony-arm.node')
- } catch (e) {
- loadErrors.push(e)
- }
- try {
- const binding = require('@tailwindcss/oxide-openharmony-arm')
- const bindingPackageVersion = require('@tailwindcss/oxide-openharmony-arm/package.json').version
- if (bindingPackageVersion !== '4.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
- throw new Error(`Native binding package version mismatch, expected 4.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
- }
- return binding
- } 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) {
- let wasiBinding = null
- let wasiBindingError = null
- try {
- wasiBinding = require('./tailwindcss-oxide.wasi.cjs')
- nativeBinding = wasiBinding
- } catch (err) {
- if (process.env.NAPI_RS_FORCE_WASI) {
- wasiBindingError = err
- }
- }
- if (!nativeBinding) {
- try {
- wasiBinding = require('@tailwindcss/oxide-wasm32-wasi')
- nativeBinding = wasiBinding
- } catch (err) {
- if (process.env.NAPI_RS_FORCE_WASI) {
- wasiBindingError.cause = err
- loadErrors.push(err)
- }
- }
- }
- if (process.env.NAPI_RS_FORCE_WASI === 'error' && !wasiBinding) {
- const error = new Error('WASI binding not found and NAPI_RS_FORCE_WASI is set to error')
- error.cause = wasiBindingError
- throw error
- }
- }
- 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.',
- {
- cause: loadErrors.reduce((err, cur) => {
- cur.cause = err
- return cur
- }),
- },
- )
- }
- throw new Error(`Failed to load native binding`)
- }
- module.exports = nativeBinding
- module.exports.Scanner = nativeBinding.Scanner
|