We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc74cd0 commit 0c18f50Copy full SHA for 0c18f50
pkg/cli/cli_impl.go
@@ -1141,12 +1141,13 @@ func runImpl(osArgs []string) int {
1141
1142
osArgs, analyze := filterAnalyzeFlags(osArgs)
1143
buildOptions, transformOptions, extras, err := parseOptionsForRun(osArgs)
1144
- if analyze != analyzeDisabled {
1145
- addAnalyzePlugin(buildOptions, analyze, osArgs)
1146
- }
1147
1148
switch {
1149
case buildOptions != nil:
+ if analyze != analyzeDisabled {
+ addAnalyzePlugin(buildOptions, analyze, osArgs)
+ }
1150
+
1151
// Read the "NODE_PATH" from the environment. This is part of node's
1152
// module resolution algorithm. Documentation for this can be found here:
1153
// https://nodejs.org/api/modules.html#modules_loading_from_the_global_folders
0 commit comments