diff options
author | 2023-07-24 20:47:07 +0200 | |
---|---|---|
committer | 2023-08-08 11:01:33 +0100 | |
commit | d0679a666f37da0fca396d42b9b32bbb25d29312 (patch) | |
tree | c44e6b986d5a240c5c82611f76e1a8fdc89e981e /scripts/cmd/build.js | |
parent | 4d160fa1e227cfcdb4789563574fc67ac24cf243 (diff) | |
download | astro-d0679a666f37da0fca396d42b9b32bbb25d29312.tar.gz astro-d0679a666f37da0fca396d42b9b32bbb25d29312.tar.zst astro-d0679a666f37da0fca396d42b9b32bbb25d29312.zip |
Remove support for Node 16 (#7780)
Diffstat (limited to 'scripts/cmd/build.js')
-rw-r--r-- | scripts/cmd/build.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmd/build.js b/scripts/cmd/build.js index 6d1189b71..b516e6b51 100644 --- a/scripts/cmd/build.js +++ b/scripts/cmd/build.js @@ -12,7 +12,7 @@ const defaultConfig = { minify: false, format: 'esm', platform: 'node', - target: 'node16', + target: 'node18', sourcemap: false, sourcesContent: false, }; |