PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
replace-in-file
/
lib
/
helpers
'use strict'; /** * Dependencies */ const chalk = require('chalk'); /** * Success handler */ module.exports = function successHandler(results, verbose) { const changed = results.filter(result => result.hasChanged); const numChanges = changed.length; if (numChanges > 0) { console.log(chalk.green(`${numChanges} file(s) were changed`)); if (verbose) { changed.forEach(result => console.log(chalk.grey('-', result.file))); } } else { console.log(chalk.yellow('No files were changed')); } };
[-] 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]