Skip to content

Commit c4bf6c1

Browse files
committed
Prepare 1.8.10 release
1 parent 3e88dac commit c4bf6c1

635 files changed

Lines changed: 288277 additions & 7 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
node_modules/
1+
#node_modules/
22
__tests__/runner/*
33

44
# Created by https://www.gitignore.io/api/webstorm

lib/Artifact.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ const fs_1 = require("fs");
66
class Artifact {
77
constructor(path, contentType = "raw") {
88
this.path = path;
9-
this.name = (0, path_1.basename)(path);
9+
this.name = path_1.basename(path);
1010
this.contentType = contentType;
1111
}
1212
get contentLength() {
13-
return (0, fs_1.statSync)(this.path).size;
13+
return fs_1.statSync(this.path).size;
1414
}
1515
readFile() {
16-
return (0, fs_1.readFileSync)(this.path);
16+
return fs_1.readFileSync(this.path);
1717
}
1818
}
1919
exports.Artifact = Artifact;

lib/ArtifactGlobber.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class FileArtifactGlobber {
6363
throw Error(`Artifact pattern :${pattern} did not match any files`);
6464
}
6565
static expandPath(path) {
66-
return (0, untildify_1.default)(path);
66+
return untildify_1.default(path);
6767
}
6868
}
6969
exports.FileArtifactGlobber = FileArtifactGlobber;

lib/ArtifactPathValidator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ArtifactPathValidator {
3939
}
4040
}
4141
verifyNotDirectory(path) {
42-
const isDir = (0, fs_1.statSync)(path).isDirectory();
42+
const isDir = fs_1.statSync(path).isDirectory();
4343
if (isDir) {
4444
const message = `Artifact is a directory:${path}. Directories can not be uploaded to a release.`;
4545
this.reportError(message);

lib/Inputs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ class CoreInputs {
164164
return core.getInput('omitNameDuringUpdate') == 'true';
165165
}
166166
stringFromFile(path) {
167-
return (0, fs_1.readFileSync)(path, 'utf-8');
167+
return fs_1.readFileSync(path, 'utf-8');
168168
}
169169
}
170170
exports.CoreInputs = CoreInputs;

node_modules/.yarn-integrity

Lines changed: 468 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/LICENSE.md

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/README.md

Lines changed: 312 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.d.ts

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)