global function syntax.global If a script simply exports its values on the global or window object, it uses the "global" syntax. Use A global module might look like: // app/sample-global.js hello = "world"; Use meta to configure this module as the global format like: steal.config({ meta: { "app/sample-global": { format: "global" } } }); Using meta you can also set a module's dependencies and what it exports. These configurations can also be set inline like: // app/sample-global.js "format global"; "exports hello"; hello = "world";
Use
A global module might look like:
Use meta to configure this module as the global format like:
Using meta you can also set a module's dependencies and what it exports. These configurations can also be set inline like: