Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

Allow linux x64 node-6 binary in builds. #169

Merged
merged 5 commits into from
Oct 31, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/utils/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ const forceIncludeDumbPath = (filePath/*, smartPaths*/) => {
// we include smartPaths just incase you want to check the inclusion of some library
return (
(filePath.endsWith('package.json') || filePath.endsWith('definition.json'))
|| filePath.endsWith('/bin/linux-x64-node-6/deasync.node') // Special, for zapier-platform-legacy-scripting-runner
|| filePath.match(path.sep === '\\' ? /aws-sdk\\apis\\.*\.json/ : /aws-sdk\/apis\/.*\.json/)
|| (global.argOpts['include-js-map'] && filePath.endsWith('.js.map'))
);
Expand Down