PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
replace-in-file
/
lib
/
helpers
'use strict'; /** * Dependencies */ const chalk = require('chalk'); /** * Error handler */ module.exports = function errorHandler(error, message = '', exitCode = 1) { if (typeof error === 'string') { message = error; error = null; } message = message || 'Error making replacements'; console.error(chalk.red(message)); if (error) { console.error(error); } process.exit(exitCode); };
[-] success-handler.js
[edit]
[-] replace-sync.js
[edit]
[+]
..
[-] error-handler.js
[edit]
[-] make-replacements.js
[edit]
[-] parse-config.js
[edit]
[-] combine-config.js
[edit]
[-] get-paths-sync.js
[edit]
[-] replace-async.js
[edit]
[-] load-config.js
[edit]
[-] glob-async.js
[edit]
[-] get-paths-async.js
[edit]