Remove dynamic option from loader plugins

This option as written is incompatible with CJS wrapper mode, was never widely adopted, and is unlikely to be compatible with ES6 loaders.

Closes #24.
This commit is contained in:
Colin Snover
2015-01-09 00:29:42 -06:00
parent 0e057fc77e
commit 67486d6b19
-6
View File
@@ -131,9 +131,3 @@ The index! plugin could be written like so:
}());
```
## dynamic: Boolean <a name="dynamic"></a>
If the plugin has a **dynamic** property set to true, then it means the loader MUST NOT cache the value of a normalized plugin dependency, but instead call the plugin's [load](#wiki-load) method for each instance of a plugin dependency.
This allows some plugins to provide time or per-call dependent values.