mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
refs 37ebe723c6
- `package-json` was a standalone library using dependency injection so
we could pull it out into its own package in Utils
- this was done in the commit referenced above
- this commit removes the implementation and tests in Ghost and replaces
the require in the initialization wrapper with the new package
4 lines
141 B
JavaScript
4 lines
141 B
JavaScript
const PackageJson = require('@tryghost/package-json');
|
|
const i18n = require('../../shared/i18n');
|
|
|
|
module.exports = new PackageJson({i18n});
|