Skip to content

Commit f938ffe

Browse files
fredshemaJacquelineTuyisenge
authored andcommitted
ch: add redirect handler (#508)
fix: linting errors fix: fallback handler
1 parent 1b58a2a commit f938ffe

File tree

10 files changed

+3703
-6917
lines changed

10 files changed

+3703
-6917
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"sourceType": "module"
2020
},
2121
"plugins": ["react", "@typescript-eslint"],
22-
"ignorePatterns": ["/root/webpack.config.js"],
22+
"ignorePatterns": ["/root/vite.config.ts"],
2323
"rules": {
2424
"no-console": ["error"],
2525
"import/extensions": "off",

.github/workflows/do.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Login to Digital Ocean and create a directory
22

33
on:
4-
push:
4+
pull_request:
55
branches:
66
- develop
77

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
</head>
4949
<body class="dark:bg-dark-frame-bg">
5050
<div id="tree"></div>
51+
<script type="module" src="/src/index.tsx"></script>
5152
</body>
5253
</html>
5354
<!DOCTYPE html>

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable no-dupe-keys */
22
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
3-
module.exports = {
3+
export default {
44
preset: 'ts-jest',
55
testEnvironment: 'jsdom',
66
verbose: true,

0 commit comments

Comments
 (0)