Skip to content

Commit

Permalink
fix: upgraded dependencies to latest, now using @fingerprintjs/finger…
Browse files Browse the repository at this point in the history
…printjs-pro@3.9.2
  • Loading branch information
JuroUhlar committed Mar 20, 2024
1 parent 9cc0227 commit 8755485
Show file tree
Hide file tree
Showing 4 changed files with 1,881 additions and 1,991 deletions.
2 changes: 1 addition & 1 deletion __tests__/client.test.ts
Expand Up @@ -28,7 +28,7 @@ describe(`SPA client`, () => {
describe(`setup`, () => {
const agentGetMock = jest.fn()

let loadSpy: jest.SpyInstance<ReturnType<typeof FingerprintJS['load']>>
let loadSpy: jest.SpyInstance<ReturnType<(typeof FingerprintJS)['load']>>

beforeEach(() => {
loadSpy = jest.spyOn(FingerprintJS, 'load')
Expand Down
56 changes: 28 additions & 28 deletions package.json
Expand Up @@ -19,7 +19,7 @@
],
"scripts": {
"prepare": "husky install",
"build": "rimraf dist && rollup -c rollup.config.js",
"build": "rimraf dist && rollup -c rollup.config.js --bundleConfigAsCjs",
"watch": "rimraf dist && rollup -c rollup.config.js -w",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"lint:fix": "pnpm lint --fix",
Expand Down Expand Up @@ -50,35 +50,35 @@
},
"homepage": "https://github.com/fingerprintjs/fingerprintjs-pro-spa#readme",
"dependencies": {
"@fingerprintjs/fingerprintjs-pro": "^3.8.5",
"tslib": "^2.5.0"
"@fingerprintjs/fingerprintjs-pro": "^3.9.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^28.1.8",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"commitizen": "^4.2.4",
"conventional-changelog-conventionalcommits": "^5.0.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.44.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-license": "^2.7.0",
"ts-jest": "^28.0.8",
"typedoc": "^0.23.26",
"typescript": "^4.9.5"
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.13.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-license": "^3.3.1",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.2"
}
}

0 comments on commit 8755485

Please sign in to comment.