0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Switched Ignition for @tryghost/debug & unpinned deps

no issue

Unpinning dependencies to ensure deps stay up to date when used in Ghost. Removed Ignition because deprecated in favour of using @tryghost/debug
This commit is contained in:
Sam Lord 2021-09-22 15:38:09 +01:00
parent cce1c0fe67
commit ea88c86ccb
2 changed files with 6 additions and 5 deletions

View file

@ -6,7 +6,7 @@ const Promise = require('bluebird');
const exec = require('child_process').exec;
const tpl = require('@tryghost/tpl');
const errors = require('@tryghost/errors');
const debug = require('ghost-ignition').debug('update-check');
const debug = require('@tryghost/debug')('update-check');
const internal = {context: {internal: true}};

View file

@ -24,11 +24,12 @@
"sinon": "11.1.2"
},
"dependencies": {
"@tryghost/debug": "^0.1.5",
"@tryghost/errors": "^0.2.11",
"@tryghost/logging": "0.1.7",
"@tryghost/logging": "^0.1.7",
"@tryghost/tpl": "^0.1.3",
"bluebird": "3.7.2",
"lodash": "4.17.21",
"moment": "2.24.0"
"bluebird": "^3.7.2",
"lodash": "^4.17.21",
"moment": "^2.24.0"
}
}