Skip to content

Commit

Permalink
Merge pull request #631 from MasterKale/update-root-deps-nov-2024
Browse files Browse the repository at this point in the history
Update monorepo deps - Nov 2024 Edition
  • Loading branch information
MasterKale authored Nov 4, 2024
2 parents c5c1d33 + 9bd081d commit 77c118b
Show file tree
Hide file tree
Showing 8 changed files with 5,536 additions and 4,076 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ciChecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:

# Install pnpm w/cache for quicker installs
# https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time
- name: Setup pnpm 8.6.12
- name: Setup pnpm 9.12.3
uses: pnpm/action-setup@v2
with:
version: 8.6.12
version: 9.12.3
run_install: false
- name: Get pnpm store directory
shell: bash
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ example/fido-conformance-mds/*
!example/fido-conformance-mds/.gitkeep
packages/*/package-lock.json
scratchenv/
.nx/cache
.nx/workspace-data
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Install the following before proceeding:

- **Node 20.x**
- **Deno 1.41.x**
- **pnpm 8.6.x**
- **pnpm 9.12.x**

After pulling down the code, set up dependencies:

Expand Down
1 change: 0 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"build",
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@
"dev:server": "lerna run test:watch --scope=@simplewebauthn/server"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^29.5.3",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lerna": "^7.1.5",
"lint-staged": "^14.0.0",
"nodemon": "^3.0.1",
"nx": "^16.7.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-morph": "^19.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"nx": "^20.0.8",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-morph": "^24.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"husky": {
"hooks": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,6 @@ Deno.test('should throw an error if user verification is required but user was n
// TODO: Get a real TPM authentication response in here
Deno.test('should verify TPM assertion', { ignore: true }, async () => {
const expectedChallenge = 'dG90YWxseVVuaXF1ZVZhbHVlRXZlcnlBc3NlcnRpb24';
// jest.spyOn(isoBase64URL, "toString").mockReturnValueOnce(expectedChallenge);
const verification = await verifyAuthenticationResponse({
response: {
id: 'YJ8FMM-AmcUt73XPX341WXWd7ypBMylGjjhu0g3VzME',
Expand Down
1 change: 0 additions & 1 deletion packages/server/src/services/metadataService.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { _fetchInternals } from '../helpers/fetch.ts';
import { BaseMetadataService, MetadataService } from './metadataService.ts';
import type { MetadataStatement } from '../metadata/mdsTypes.ts';

// const _fetch = fetch as unknown as jest.Mock;
let mockFetch: Stub;

describe('Method: initialize()', () => {
Expand Down
Loading

0 comments on commit 77c118b

Please sign in to comment.