Skip to content

Commit

Permalink
Fix missing declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
bigorn0 committed Sep 26, 2023
1 parent 27c3d4e commit ca3e1bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const pkgTpl = ({ githubOrganizationScope, moduleName, targetPlatform, ta
};
};

export async function writePkgTpl({ moduleName, targetPlatform, targetArch, version, scopedPackagePath }) {
export async function writePkgTpl({ moduleName, targetPlatform, targetArch, version, scopedPackagePath, forOpenSSL1 }) {
const packageJsonContentForModule = pkgTpl({
githubOrganizationScope,
moduleName,
Expand Down Expand Up @@ -187,7 +187,7 @@ export async function normalizeNativeModulesUnderHackolade(nativeModules) {
if(name === 'couchbase'){
depsByTarget[`${pkg.name}-linux-x64-openssl1`] = prebuildPkgVersion;
}

const deps = pkg.dependencies;
pkg.dependencies = Object.assign(deps, depsByTarget);

Expand Down

0 comments on commit ca3e1bf

Please sign in to comment.