This repository was archived by the owner on Feb 1, 2025. It is now read-only.
File tree 2 files changed +572
-572
lines changed
2 files changed +572
-572
lines changed Original file line number Diff line number Diff line change @@ -20,22 +20,22 @@ program
20
20
. command ( 'pack' )
21
21
. description ( 'Package standalone Next12 build into Lambda compatible ZIPs.' )
22
22
. option (
23
- '--standaloneFolder' ,
23
+ '--standaloneFolder <path> ' ,
24
24
'Folder including NextJS standalone build. Parental folder should include more folders as well.' ,
25
25
path . resolve ( commandCwd , '.next/standalone' ) ,
26
26
)
27
27
. option (
28
- '--publicFolder' ,
28
+ '--publicFolder <path> ' ,
29
29
'Folder where public assets are located, typically this folder is located in root of the project.' ,
30
30
path . resolve ( commandCwd , './public' ) ,
31
31
)
32
32
. option (
33
- '--handlerPath' ,
33
+ '--handlerPath <path> ' ,
34
34
'Path to custom handler to be used to handle ApiGw events. By default this is provided for you.' ,
35
35
path . resolve ( path . dirname ( __filename ) , './server-handler.js' ) ,
36
36
)
37
37
. option (
38
- '--outputFolder' ,
38
+ '--outputFolder <path> ' ,
39
39
'Path to folder which should be used for outputting bundled ZIP files for your Lambda. It will be cleared before every script run.' ,
40
40
path . resolve ( commandCwd , './next.out' ) ,
41
41
)
You can’t perform that action at this time.
0 commit comments