1.11.0 release

This commit is contained in:
Nick Cipollo
2022-10-02 17:40:49 -04:00
parent 5b3ed26ce2
commit a9d2058f3a
10 changed files with 27 additions and 83 deletions

View File

@@ -6,14 +6,14 @@ const fs_1 = require("fs");
class Artifact {
constructor(path, contentType = "raw") {
this.path = path;
this.name = (0, path_1.basename)(path);
this.name = path_1.basename(path);
this.contentType = contentType;
}
get contentLength() {
return (0, fs_1.statSync)(this.path).size;
return fs_1.statSync(this.path).size;
}
readFile() {
return (0, fs_1.readFileSync)(this.path);
return fs_1.readFileSync(this.path);
}
}
exports.Artifact = Artifact;