mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
Reordered API exports to improve readability
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
This commit is contained in:
parent
edb626af18
commit
4778fce615
@ -1,6 +1,6 @@
|
||||
module.exports = require('./v3');
|
||||
module.exports.v2 = require('./v2');
|
||||
module.exports.canary = require('./canary');
|
||||
module.exports.v3 = require('./v3');
|
||||
module.exports.shared = require('./shared');
|
||||
module.exports.v4 = require('./canary');
|
||||
module.exports.v3 = require('./v3');
|
||||
module.exports.v2 = require('./v2');
|
||||
module.exports.shared = require('./shared');
|
||||
|
Loading…
Reference in New Issue
Block a user