You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great that you print warnings for projects, but there's a couple of issues.
The project name is quite hidden in the text
One warning block is printed per warning
So rather than this:
Warning
=======
The following compiler flags have been specified in pegged's
package description file. They are handled by DUB and direct use in packages is
discouraged.
Alternatively, you can set the DFLAGS environment variable to pass custom flags
to the compiler, or use one of the suggestions below:
-wi: Managed by DUB, do not specify in package.json
-property: Managed by DUB, do not specify in package.json
Warning
=======
The following compiler flags have been specified in pegged's
package description file. They are handled by DUB and direct use in packages is
discouraged.
Alternatively, you can set the DFLAGS environment variable to pass custom flags
to the compiler, or use one of the suggestions below:
-ggdb: Call dub with --build=debug
( and it goes on and on and on .. )
I wold like something like this:
Warning [project = pegged]
=======
The following compiler flags have been specified in the projects
package description file. They are handled by DUB and direct use in packages is
discouraged.
Alternatively, you can set the DFLAGS environment variable to pass custom flags
to the compiler, or use one of the suggestions below:
-wi: Managed by DUB, do not specify in package.json
-property: Managed by DUB, do not specify in package.json
-ggdb: Call dub with --build=debug
The text was updated successfully, but these errors were encountered:
## Warning for package pegged ##
The following compiler flags have been specified in the package description
file. They are handled by DUB and direct use in packages is discouraged.
Alternatively, you can set the DFLAGS environment variable to pass custom flags
to the compiler, or use one of the suggestions below:
-wi: Managed by DUB, do not specify in package.json
-property: Managed by DUB, do not specify in package.json
-ggdb: Call dub with --build=debug
It warned for every "dflags-" field again and multiple times for each package. It is now only checked once in a central place and all "dflags-" fields are first merged.
This is regarding dub 0.9.12
Great that you print warnings for projects, but there's a couple of issues.
So rather than this:
I wold like something like this:
The text was updated successfully, but these errors were encountered: