mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 03:39:30 +08:00
10 lines
273 B
Text
10 lines
273 B
Text
"use strict";
|
|
|
|
module.exports = function(it) {
|
|
const { pattern, globDisabled } = it;
|
|
|
|
return `
|
|
No files matching the pattern "${pattern}"${globDisabled ? " (with disabling globs)" : ""} were found.
|
|
Please check for typing mistakes in the pattern.
|
|
`.trimStart();
|
|
};
|