mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +00:00
Convert docs to docsy
This commit is contained in:
24
site/node_modules/fast-glob/package/out/adapters/fs.js
generated
vendored
Normal file
24
site/node_modules/fast-glob/package/out/adapters/fs.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var path = require("path");
|
||||
var FileSystem = /** @class */ (function () {
|
||||
function FileSystem(options) {
|
||||
this.options = options;
|
||||
}
|
||||
/**
|
||||
* Return full path to entry.
|
||||
*/
|
||||
FileSystem.prototype.getFullEntryPath = function (filepath) {
|
||||
return path.resolve(this.options.cwd, filepath);
|
||||
};
|
||||
/**
|
||||
* Return an implementation of the Entry interface.
|
||||
*/
|
||||
FileSystem.prototype.makeEntry = function (stat, pattern) {
|
||||
stat.path = pattern;
|
||||
stat.depth = pattern.split('/').length;
|
||||
return stat;
|
||||
};
|
||||
return FileSystem;
|
||||
}());
|
||||
exports.default = FileSystem;
|
||||
Reference in New Issue
Block a user