Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Commit

Permalink
dependencies refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
edno committed Jul 20, 2021
1 parent f98d637 commit ecde962
Show file tree
Hide file tree
Showing 5 changed files with 33,302 additions and 13,298 deletions.
5 changes: 2 additions & 3 deletions dangerfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ require("colors");

import * as Diff from "diff";
import { danger, fail, schedule, warn } from "danger";
import { filter } from "lodash";

const COLOR = {
ADDED: "green",
Expand Down Expand Up @@ -94,12 +93,12 @@ if (readmeFile.deleted) {
}

const jestSnapshots = {
deleted: filter(danger.git.deleted_files, (file) => {
deleted: danger.git.deleted_files.filter(file => {
{
return file.match(JEST_SNAPSHOT);
}
}),
modified: filter(danger.git.modified_files, (file) => {
modified: danger.git.modified_files.filter(file => {
{
return file.match(JEST_SNAPSHOT);
}
Expand Down
Loading

0 comments on commit ecde962

Please sign in to comment.