Skip to content

Commit

Permalink
fix: change lambdas filename
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwa committed Aug 10, 2023
1 parent a17a213 commit edac86e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,14 +244,13 @@ export async function build(opts: BuildOptions): Promise<BuilderOutput> {

// Client dist files
const clientDistDir = path.join(distDir, 'client');
const clientDistFiles = await glob('**', clientDistDir);
const clientDistFiles = await globAndPrefix('**', clientDistDir, 'client');

// Server dist files
const serverDistDir = path.join(distDir, 'server');

const serverDistFiles = await glob('**', serverDistDir);
console.log('serverDistFiles', serverDistFiles);
const distFils = await glob('**', distDir);
const serverDistFiles = await globAndPrefix('**', serverDistDir, 'server');
const distFiles = await glob('**', distDir);

// const serverDistFiles = await globAndPrefix(
// '**',
Expand Down

0 comments on commit edac86e

Please sign in to comment.