mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2026-01-31 19:38:27 +07:00
* Initial plan * Run npm ci --ignore-scripts to update dependencies Co-authored-by: dawidd6 <9713907+dawidd6@users.noreply.github.com> * Convert CommonJS to ESM (#255) * Initial plan * Convert CommonJS imports to ESM Co-authored-by: dawidd6 <9713907+dawidd6@users.noreply.github.com> * Use node: protocol prefix for built-in modules Co-authored-by: dawidd6 <9713907+dawidd6@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: dawidd6 <9713907+dawidd6@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: dawidd6 <9713907+dawidd6@users.noreply.github.com>
41 lines
1.8 KiB
JavaScript
41 lines
1.8 KiB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
});
|
|
};
|
|
import { DefaultGlobber } from './internal-globber.js';
|
|
import { hashFiles as _hashFiles } from './internal-hash-files.js';
|
|
/**
|
|
* Constructs a globber
|
|
*
|
|
* @param patterns Patterns separated by newlines
|
|
* @param options Glob options
|
|
*/
|
|
export function create(patterns, options) {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
return yield DefaultGlobber.create(patterns, options);
|
|
});
|
|
}
|
|
/**
|
|
* Computes the sha256 hash of a glob
|
|
*
|
|
* @param patterns Patterns separated by newlines
|
|
* @param currentWorkspace Workspace used when matching files
|
|
* @param options Glob options
|
|
* @param verbose Enables verbose logging
|
|
*/
|
|
export function hashFiles(patterns_1) {
|
|
return __awaiter(this, arguments, void 0, function* (patterns, currentWorkspace = '', options, verbose = false) {
|
|
let followSymbolicLinks = true;
|
|
if (options && typeof options.followSymbolicLinks === 'boolean') {
|
|
followSymbolicLinks = options.followSymbolicLinks;
|
|
}
|
|
const globber = yield create(patterns, { followSymbolicLinks });
|
|
return _hashFiles(globber, currentWorkspace, verbose);
|
|
});
|
|
}
|
|
//# sourceMappingURL=glob.js.map
|