Skip to content

Commit b112fea

Browse files
authored
Merge pull request #39 from ndolidzee/update-package-scope
Update package scope
2 parents 59de24f + a363b22 commit b112fea

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/utils/validateInviteCode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Validator } from 'pear-apps-utils-validator'
1+
import { Validator } from '@tetherto/pear-apps-utils-validator'
22

33
import { logger } from './logger'
44

src/worklet/masterPasswordManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { constantTimeHashCompare } from 'pearpass-utils-password-check'
1+
import { constantTimeHashCompare } from '@tetherto/pearpass-utils-password-check'
22

33
import {
44
encryptionAdd,

src/worklet/masterPasswordManager.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as constantTimeHashCompareModule from 'pearpass-utils-password-check'
1+
import * as constantTimeHashCompareModule from '@tetherto/pearpass-utils-password-check'
22

33
import * as appDeps from './appDeps'
44
import * as decryptVaultKeyModule from './decryptVaultKey'
@@ -48,7 +48,7 @@ jest.mock('./hashPassword', () => ({
4848
hashPassword: jest.fn()
4949
}))
5050

51-
jest.mock('pearpass-utils-password-check', () => ({
51+
jest.mock('@tetherto/pearpass-utils-password-check', () => ({
5252
constantTimeHashCompare: jest.fn()
5353
}))
5454

0 commit comments

Comments
 (0)