0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/lib/fs/package-json/index.js
Daniel Lockyer 4378435e12 Refactored package-json lib into a class
- this helps bring all the code together so we can extract it in the
  future
- turning it into a class also lets us easily inject the i18n instance
  and store it locally
2020-11-25 09:19:35 +00:00

4 lines
128 B
JavaScript

const PackageJson = require('./package-json');
const {i18n} = require('../../common');
module.exports = new PackageJson(i18n);