You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*/
'use strict';
const{ build }=require('esbuild');
constfs=require('fs');
constshared={
bundle: true,
entryPoints: ['index.mjs'],
external: ['./rapid-client.node'],
logLevel: 'info',
minify: false,
platform: 'node',
format: 'esm',
charset: 'utf8',
banner: {
js: `/** Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. */\nimport { createRequire } from \"module\";\nconst require = createRequire(import.meta.url);`,