Skip to content

Commit

Permalink
fix: typos in summary and log
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudLigny committed Oct 2, 2022
1 parent 04482e6 commit c5e5463
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ module.exports = {

utils.status.show({
title: cachedFiles.length + ' files restored',
summary: 'Cecil cache restored from previous build. ' + cachedFiles.length + ' files.'
summary: 'Cecil’s cache restored from previous build. ' + cachedFiles.length + ' files.'
})
console.log('%s files from Cecil cache (%s) restored from previous build.', cachedFiles.length, cacheDirs.join(', '));
console.log('%s files from Cecil’s cache (%s) restored from previous build.', cachedFiles.length, cacheDirs.join(', '));
if (inputs.debug || process.env.CECIL_DEBUG) printDebug(cachedFiles);
} else {
console.log('Cache not found.');
Expand All @@ -39,12 +39,12 @@ module.exports = {

utils.status.show({
title: cachedFiles.length + ' files stored',
summary: 'Cecil cache stored to speed up next builds. ' + cachedFiles.length + ' files.'
summary: 'Cecil’s cache stored to speed up next builds. ' + cachedFiles.length + ' files.'
})
console.log('%s files from Cecil cache (%s) stored to speed up next builds.', cachedFiles.length, cacheDirs.join(', '));
console.log('%s files from Cecil’s cache (%s) stored to speed up next builds.', cachedFiles.length, cacheDirs.join(', '));
if (inputs.debug || process.env.CECIL_DEBUG) printDebug(cachedFiles);
} else {
console.log('Cecil cache not found.');
console.log('Cecil’s cache not found.');
}
},
};
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "netlify-plugin-cecil-cache",
"version": "0.3.1",
"version": "0.3.2",
"description": "Persist the Cecil cache between Netlify builds.",
"main": "index.js",
"repository": "https://github.com/Cecilapp/netlify-plugin-cecil-cache.git",
Expand Down

0 comments on commit c5e5463

Please sign in to comment.