This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// UTILS | |
export const getPaddingFromPrecision = ( | |
floatingPointPrecision: number, | |
): number => { | |
return Math.ceil(Math.log2(360 * floatingPointPrecision)); | |
}; | |
export const convertToBinary = ( | |
num: number, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dist/pack.js b/dist/pack.js | |
index 4582cb1ad12e8eb67843e8268674680d886feaa5..394fb9d743777d1003d4e8f53b765807cd729cfe 100644 | |
--- a/dist/pack.js | |
+++ b/dist/pack.js | |
@@ -65,10 +65,10 @@ const filterFilesForZipPackage = ({ files, functionAlias, includedFiles, exclude | |
// if no externals is set or if the provider is google, we do not need any files from node_modules | |
if (!hasExternals || isGoogleProvider) | |
return false; | |
- if ( | |
- // this is needed for dependencies that maps to a path (like scoped ones) |