Skip to content

Commit

Permalink
Don't strip from release
Browse files Browse the repository at this point in the history
  • Loading branch information
noClaps committed Jan 3, 2025
1 parent 4d06076 commit 426e140
Show file tree
Hide file tree
Showing 6 changed files with 386 additions and 15 deletions.
1 change: 1 addition & 0 deletions browser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '@noclaps/highlight-wasm32-wasi'
2 changes: 1 addition & 1 deletion highlight.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { highlight, type BundledLanguage, type Theme } from "./index.ts";
import { highlight, type BundledLanguage, type Theme } from "./main.ts";

const theme: Theme = {
fg: "#fff",
Expand Down
3 changes: 3 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/* auto-generated by NAPI-RS */
/* eslint-disable */
export declare function highlight(highlightNames: Array<string>, language: string, code: string): string
367 changes: 367 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,367 @@
// 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 = () => {
const report = typeof process.report.getReport === 'function' ? process.report.getReport() : null
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.platform === 'android') {
if (process.arch === 'arm64') {
try {
return require('./highlight.android-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-android-arm64')
} catch (e) {
loadErrors.push(e)
}

} else if (process.arch === 'arm') {
try {
return require('./highlight.android-arm-eabi.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-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('./highlight.win32-x64-msvc.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-win32-x64-msvc')
} catch (e) {
loadErrors.push(e)
}

} else if (process.arch === 'ia32') {
try {
return require('./highlight.win32-ia32-msvc.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-win32-ia32-msvc')
} catch (e) {
loadErrors.push(e)
}

} else if (process.arch === 'arm64') {
try {
return require('./highlight.win32-arm64-msvc.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-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('./highlight.darwin-universal.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-darwin-universal')
} catch (e) {
loadErrors.push(e)
}

if (process.arch === 'x64') {
try {
return require('./highlight.darwin-x64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-darwin-x64')
} catch (e) {
loadErrors.push(e)
}

} else if (process.arch === 'arm64') {
try {
return require('./highlight.darwin-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-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('./highlight.freebsd-x64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-freebsd-x64')
} catch (e) {
loadErrors.push(e)
}

} else if (process.arch === 'arm64') {
try {
return require('./highlight.freebsd-arm64.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-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('./highlight.linux-x64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-x64-musl')
} catch (e) {
loadErrors.push(e)
}

} else {
try {
return require('./highlight.linux-x64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-x64-gnu')
} catch (e) {
loadErrors.push(e)
}

}
} else if (process.arch === 'arm64') {
if (isMusl()) {
try {
return require('./highlight.linux-arm64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-arm64-musl')
} catch (e) {
loadErrors.push(e)
}

} else {
try {
return require('./highlight.linux-arm64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-arm64-gnu')
} catch (e) {
loadErrors.push(e)
}

}
} else if (process.arch === 'arm') {
if (isMusl()) {
try {
return require('./highlight.linux-arm-musleabihf.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-arm-musleabihf')
} catch (e) {
loadErrors.push(e)
}

} else {
try {
return require('./highlight.linux-arm-gnueabihf.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-arm-gnueabihf')
} catch (e) {
loadErrors.push(e)
}

}
} else if (process.arch === 'riscv64') {
if (isMusl()) {
try {
return require('./highlight.linux-riscv64-musl.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-riscv64-musl')
} catch (e) {
loadErrors.push(e)
}

} else {
try {
return require('./highlight.linux-riscv64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-riscv64-gnu')
} catch (e) {
loadErrors.push(e)
}

}
} else if (process.arch === 'ppc64') {
try {
return require('./highlight.linux-ppc64-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-ppc64-gnu')
} catch (e) {
loadErrors.push(e)
}

} else if (process.arch === 's390x') {
try {
return require('./highlight.linux-s390x-gnu.node')
} catch (e) {
loadErrors.push(e)
}
try {
return require('@noclaps/highlight-linux-s390x-gnu')
} catch (e) {
loadErrors.push(e)
}

} else {
loadErrors.push(new Error(`Unsupported architecture on Linux: ${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('./highlight.wasi.cjs')
} catch (err) {
if (process.env.NAPI_RS_FORCE_WASI) {
loadErrors.push(err)
}
}
if (!nativeBinding) {
try {
nativeBinding = require('@noclaps/highlight-wasm32-wasi')
} catch (err) {
if (process.env.NAPI_RS_FORCE_WASI) {
loadErrors.push(err)
}
}
}
}

if (!nativeBinding) {
if (loadErrors.length > 0) {
// TODO Link to documentation with potential fixes
// - The package owner could build/publish bindings for this arch
// - The user may need to bundle the correct files
// - The user may need to re-install node_modules to get new packages
throw new Error('Failed to load native binding', { cause: loadErrors })
}
throw new Error(`Failed to load native binding`)
}

module.exports.highlight = nativeBinding.highlight
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { highlight as tsHighlight } from "./dist/index.js";
import { highlight as tsHighlight } from "./index.js";

function escapeHTML(input: string): string {
return input
Expand Down
Loading

0 comments on commit 426e140

Please sign in to comment.