Skip to content

Commit

Permalink
fix(build): fix forgotten node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed Feb 27, 2024
1 parent 5f8f732 commit f2584fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/whook-aws-lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const CONFIG: AppConfig = {
// ...
+ COMPILER_OPTIONS: {
+ externalModules: [],
+ target: '16',
+ target: '20',
+ },
};

Expand Down
2 changes: 1 addition & 1 deletion packages/whook-gcp-functions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const CONFIG: AppConfig = {
// ...
+ COMPILER_OPTIONS: {
+ externalModules: [],
+ target: '16',
+ target: '20',
+ },
};

Expand Down
2 changes: 1 addition & 1 deletion packages/whook/src/services/compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { AppEnvVars } from 'application-services';
export const DEFAULT_COMPILER_OPTIONS: FullWhookCompilerOptions = {
externalModules: [],
ignoredModules: [],
target: '16',
target: '20',
format: 'esm',
};

Expand Down

0 comments on commit f2584fd

Please sign in to comment.