v5.10.1
Added
- Automatic generation of our brand new documentation at http://sierrasoftworks.github.io/Iridium
Description
This release is primarily focused around adding support for the automatic generation of documentation for Iridium. It changes a couple of internal module definitions to avoid using export default
, since TypeDoc doesn't support it terribly well. Since these are internal modules they should not break anybody's code, but if you are using internal Iridium modules in your project (which you shouldn't) here's how to fix it.
If your original import looked like this:
import Model from 'iridium/lib/Model';
You need to change it to look like this instead:
import {Model} from 'iridium/lib/model';
If you are using Iridium through the standard index.ts
file then there are no changes you will need to make to your code. You'll know you're using index.ts
if your Iridium import looks like any of these:
import Iridium from 'iridium';
import Iridium = require('iridium');
var Iridium = require('iridium');