Files
release-action/lib/Artifact.js
Nick Cipollo c4bf6c1ab0
Some checks failed
Test / check_pr (push) Has been cancelled
Prepare 1.8.10 release
2021-10-03 19:49:26 -04:00

20 lines
518 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Artifact = void 0;
const path_1 = require("path");
const fs_1 = require("fs");
class Artifact {
constructor(path, contentType = "raw") {
this.path = path;
this.name = path_1.basename(path);
this.contentType = contentType;
}
get contentLength() {
return fs_1.statSync(this.path).size;
}
readFile() {
return fs_1.readFileSync(this.path);
}
}
exports.Artifact = Artifact;