Skip to content

Commit

Permalink
Update certificates for December 2023 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
sargant authored Dec 2, 2023
1 parent 8093dfe commit 3be35d8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
6 changes: 3 additions & 3 deletions api/certs.enc.js

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

8 changes: 6 additions & 2 deletions tools/encrypt-certs.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { readFileSync, writeFileSync } from 'fs'
import { join } from 'path'
import { encrypt } from '../lib/encryption'
import { dirname, join } from 'path'
import { fileURLToPath } from 'url'
import { encrypt } from '../lib/encryption.js'

const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)

let output = ''

Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
Expand All @@ -21,10 +21,14 @@
"skipLibCheck": true,
"strict": true,
"types": [
"node",
"jest",
"unplugin-icons/types/react"
],
"useDefineForClassFields": true
},
"include": ["./**/*", ".*"],
"ts-node": {
"esm": true
}
}

1 comment on commit 3be35d8

@vercel
Copy link

@vercel vercel bot commented on 3be35d8 Dec 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

dfyb-run – ./

dfyb-run-git-main-sargant1.vercel.app
dfyb.vercel.app
dfyb-run-sargant1.vercel.app
dfyb.run
www.dfyb.run

Please sign in to comment.