Skip to content

Commit 41c8b41

Browse files
author
Nick Fields
committed
patch: another dependency bump
1 parent 101938c commit 41c8b41

File tree

3 files changed

+26
-34
lines changed

3 files changed

+26
-34
lines changed

dist/index.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7513,8 +7513,6 @@ const fixWinEPERM = (p, options, er, cb) => {
75137513
assert(p)
75147514
assert(options)
75157515
assert(typeof cb === 'function')
7516-
if (er)
7517-
assert(er instanceof Error)
75187516

75197517
options.chmod(p, 0o666, er2 => {
75207518
if (er2)
@@ -7534,8 +7532,6 @@ const fixWinEPERM = (p, options, er, cb) => {
75347532
const fixWinEPERMSync = (p, options, er) => {
75357533
assert(p)
75367534
assert(options)
7537-
if (er)
7538-
assert(er instanceof Error)
75397535

75407536
try {
75417537
options.chmodSync(p, 0o666)
@@ -7565,8 +7561,6 @@ const fixWinEPERMSync = (p, options, er) => {
75657561
const rmdir = (p, options, originalEr, cb) => {
75667562
assert(p)
75677563
assert(options)
7568-
if (originalEr)
7569-
assert(originalEr instanceof Error)
75707564
assert(typeof cb === 'function')
75717565

75727566
// try to rmdir first, and only readdir on ENOTEMPTY or EEXIST (SunOS)
@@ -7672,8 +7666,6 @@ const rimrafSync = (p, options) => {
76727666
const rmdirSync = (p, options, originalEr) => {
76737667
assert(p)
76747668
assert(options)
7675-
if (originalEr)
7676-
assert(originalEr instanceof Error)
76777669

76787670
try {
76797671
options.rmdirSync(p)

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@
2626
"dependencies": {
2727
"@actions/core": "^1.2.2",
2828
"@actions/exec": "^1.0.3",
29-
"rimraf": "^3.0.1",
29+
"rimraf": "^3.0.2",
3030
"yaml": "^1.7.2"
3131
},
3232
"devDependencies": {
3333
"@commitlint/cli": "^8.3.5",
3434
"@commitlint/config-conventional": "^8.3.4",
3535
"@semantic-release/commit-analyzer": "^8.0.0",
3636
"@types/jest": "^24.9.1",
37-
"@types/node": "^13.7.0",
37+
"@types/node": "^13.7.1",
3838
"@types/rimraf": "^2.0.3",
3939
"@types/yaml": "^1.2.0",
40-
"@typescript-eslint/eslint-plugin": "^2.19.0",
41-
"@typescript-eslint/parser": "^2.16.0",
40+
"@typescript-eslint/eslint-plugin": "^2.19.2",
41+
"@typescript-eslint/parser": "^2.19.2",
4242
"@zeit/ncc": "^0.20.5",
4343
"eslint": "^6.8.0",
4444
"eslint-config-prettier": "^6.10.0",

0 commit comments

Comments
 (0)