mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
4778fce615
refs https://github.com/TryGhost/Team/issues/513 - Having exports in no particular order was making it hard to spot if there's anything missing - Having a DESC order on the exported API versions makes it very easy to modify and maintain in the future
7 lines
239 B
JavaScript
7 lines
239 B
JavaScript
module.exports = require('./v3');
|
|
module.exports.canary = require('./canary');
|
|
module.exports.v4 = require('./canary');
|
|
module.exports.v3 = require('./v3');
|
|
module.exports.v2 = require('./v2');
|
|
module.exports.shared = require('./shared');
|