Opened 8 years ago
Closed 8 years ago
#15903 closed defect (invalid)
Warnings when running custom build
Reported by: | Kenny Chen | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | tbd |
Component: | General | Version: | 1.8.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
hi, I have just finished a prototype project with dojo custom build and every time I run the build I see a bunch of warnings. Just wondering what are these warnings and how to fix them. BTW, my application runs fine without any issue. Here is the snapshot of the warnings.
[exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: touch?dojox/gesture/tap; reference module id: dojox/treemap/DrillDownUp [exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojox/mobile/TimePicker; plugin: dojox/mobile/_PickerChooser [exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojox/mobile/DatePicker; plugin: dojox/mobile/_PickerChooser [exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dojo-parser?:dojo/_base/window; reference module id: dojox/mvc/parserExtension [exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dojo-mobile-parser?:dojo/parser; reference module id: dojox/mvc/parserExtension [exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dojo-parser?:dojox/mobile/parser; reference module id: dojox/mvc/parserExtension [exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/node; plugin: dojo/node [exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/node; plugin: dojo/node [exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/node; plugin: dojo/node [exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/node; plugin: dojo/node [exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dojo-firebug?./_firebug/firebug; reference module id: dojo/main [exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request; plugin: dojo/request/default [exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dom-addeventlistener?:./aspect; reference module id: dojo/on [exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: host-browser?dom-addeventlistener?:../on:; reference module id: dojo/request/watch [exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/registry; plugin: dojo/request/default
Change History (2)
comment:1 Changed 8 years ago by
comment:2 Changed 8 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
these are all warnings... you can ignore them. if they were errors you would want to investigate further.
they are all about either plugin resources that can't be resolved at build time or about missing build time plugin resolvers. all of these are expected - which is why they are warnings and not errors.
the builder provides warnings to let you know that it found something that it thought you might like to know about. if any of the warnings were about something you weren't expecting then you would be glad to know about them. in all of the cases you've included, there is nothing strange so you can just ignore them and move on.
hi,
I have just finished a prototype project with dojo custom build and every time I run the build I see a bunch of warnings. Just wondering what are these warnings and how to fix them. BTW, my application runs fine without any issue. Here is the snapshot of the warnings.
[exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: touch?dojox/gesture/tap; reference module id: dojox/treemap/DrillDownUp
[exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojox/mobile/TimePicker; plugin: dojox/mobile/_PickerChooser
[exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojox/mobile/DatePicker; plugin: dojox/mobile/_PickerChooser
[exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dojo-parser?:dojo/_base/window; reference module id: dojox/mvc/parserExtension
[exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dojo-mobile-parser?:dojo/parser; reference module id: dojox/mvc/parserExtension
[exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dojo-parser?:dojox/mobile/parser; reference module id: dojox/mvc/parserExtension
[exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/node; plugin: dojo/node
[exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/node; plugin: dojo/node
[exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/node; plugin: dojo/node
[exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/node; plugin: dojo/node
[exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dojo-firebug?./_firebug/firebug; reference module id: dojo/main
[exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request; plugin: dojo/request/default
[exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: dom-addeventlistener?:./aspect; reference module id: dojo/on
[exec] warn(216) dojo/has plugin resource could not be resolved during build-time. plugin resource id: host-browser?dom-addeventlistener?:../on:; reference module id: dojo/request/watch
[exec] warn(224) A plugin dependency was encountered but there was no build-time plugin resolver. module: dojo/request/registry; plugin: dojo/request/default
cheers, Kenny