Skip to content

Commit

Permalink
chore(deps): update dependency to version 🌟 (#1528)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jun 19, 2024
1 parent dbe87e6 commit fe570e5
Show file tree
Hide file tree
Showing 4 changed files with 3,361 additions and 3,375 deletions.
3 changes: 0 additions & 3 deletions backend/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,16 @@ app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());

app.use(
// @ts-expect-error
session({
secret: "session secret",
resave: false,
saveUninitialized: false,
unset: "destroy",
})
);
// @ts-expect-error
app.use(passport.initialize());
app.use(passport.session());

// @ts-expect-error
app.use(paginate.middleware(+process.env.PAGINATION_PAGE_SIZE!));

/* istanbul ignore next */
Expand Down
1 change: 0 additions & 1 deletion scripts/testServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ const app = express();

setupProxy(app);

// @ts-expect-error
app.use(history());
app.use(express.static(path.join(__dirname, "../build")));

Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"noEmit": true,
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true,
"types": ["cypress"],
"types": ["cypress"]
},
"include": [
"src/**/*.cy.{js,ts,jsx,tsx}",
"scripts",
"backend",
"src/__tests__",
"cypress.d.ts",
"src/utils/portUtils.ts",
],
"src/utils/portUtils.ts"
]
}
Loading

0 comments on commit fe570e5

Please sign in to comment.