mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
feat: support freebsd in napi build command
This commit is contained in:
parent
b651be1bec
commit
283a4aaab9
@ -1,17 +1,13 @@
|
||||
import { platform } from 'os'
|
||||
|
||||
const platformName = platform()
|
||||
|
||||
const configuration = {
|
||||
extensions: ['ts', 'tsx'],
|
||||
files: ['test_module/__test__/**/*.spec.ts'],
|
||||
require: [
|
||||
platformName === 'freebsd'
|
||||
require('os').platform() === 'freebsd'
|
||||
? 'ts-node/register/transpile-only'
|
||||
: '@swc-node/register',
|
||||
],
|
||||
environmentVariables: {
|
||||
SWC_NODE_PROJECT: './test_module/tsconfig.json',
|
||||
TS_NODE_PROJECT: './test_module/tsconfig.json',
|
||||
},
|
||||
}
|
||||
|
||||
@ -19,4 +15,4 @@ if (parseInt(process.versions.napi, 10) < 4) {
|
||||
configuration.compileEnhancements = false
|
||||
}
|
||||
|
||||
export default configuration
|
||||
module.exports = configuration
|
||||
@ -84,6 +84,7 @@ export class BuildCommand extends Command {
|
||||
libExt = '.dll'
|
||||
break
|
||||
case 'linux':
|
||||
case 'freebsd':
|
||||
dylibName = `lib${dylibName}`
|
||||
libExt = '.so'
|
||||
break
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user