Skip to content

Commit

Permalink
(fix) upgrade tar dependency to fix vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermeborgesbastos committed Aug 9, 2021
1 parent 4fdb674 commit 8320406
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 19 deletions.
23 changes: 7 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"rxjs": "^6.5.5",
"serialize-javascript": "^4.0.0",
"socket.io": "^2.4.1",
"tar": "^4.4.15",
"tslib": "^1.13.0",
"webpack-subresource-integrity": "^1.5.2",
"websocket-extensions": "^0.1.4",
Expand Down
2 changes: 1 addition & 1 deletion src/app/core/shared/abstract.swipe.section.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SwipeSection } from './swipe.section';
import { SwipeSection } from "./swipe.section";

enum Direction {
LEFT,
Expand Down
2 changes: 1 addition & 1 deletion src/app/experience/experience.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { IExperience } from "./experience-interfaces";
import { DataService } from "../core/data.service";
import { SorterService } from "../core/sorter.service";
import { FaIconLibrary } from "@fortawesome/angular-fontawesome";
import { AbstractSwipeSection } from '../core/shared/abstract.swipe.section';
import { AbstractSwipeSection } from "../core/shared/abstract.swipe.section";

@Component({
selector: "app-experience",
Expand Down
2 changes: 1 addition & 1 deletion src/app/posts/posts.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { DataService } from "../core/data.service";
import { IconDefinition } from "@fortawesome/free-solid-svg-icons";
import { IPost } from "./posts-interfaces";
import { faChevronLeft, faChevronRight } from "@fortawesome/free-solid-svg-icons";
import { AbstractSwipeSection } from '../core/shared/abstract.swipe.section';
import { AbstractSwipeSection } from "../core/shared/abstract.swipe.section";

@Component({
selector: "app-posts",
Expand Down

0 comments on commit 8320406

Please sign in to comment.