Robert Claypool
Robert Claypool

Reputation: 4312

Dojo Boilerplate Build Warnings

Today I cloned the Dojo Boilerplate and I'm running build.sh for the first time.

Messages like "warn(216) dojo/has plugin resource could not be resolved during build-time" are showing up in the console, and I wonder how much these warnings matter. Should I try to resolve them?

Upvotes: 1

Views: 409

Answers (2)

keemor
keemor

Reputation: 1279

You can use grep to filer out messages starting for ex. from warn or info

src/util/buildscripts/build.sh --profile devel.profile.js | grep -vE "^warn|^info"

Upvotes: 0

Sean Zhao
Sean Zhao

Reputation: 1516

There always will be a lot of this kinds of warnings in build report. I seldom find that this will cause issues in your final building.

Don't worry about warning, just go head. Unless you see some errors in the report, you need to fix the errors.

Here is standard response from dojo https://bugs.dojotoolkit.org/ticket/15903

Upvotes: 1

Related Questions