Skip to content

Commit bdfb62c

Browse files
chore: wip
1 parent 9449195 commit bdfb62c

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"format:fix": "bunx --bun pickier format . --write --config pickier.config.ts",
6060
"changelog": "bunx logsmith --verbose",
6161
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
62-
"release": "bun run changelog:generate && bunx bumpx prompt --recursive",
62+
"release": "bun --bun run changelog:generate && bunx --bun bumpx prompt --recursive",
6363
"typecheck": "bun --bun tsc --noEmit",
6464
"dev:docs": "bun --bun vitepress dev docs",
6565
"build:docs": "bun --bun vitepress build docs",

packages/hash/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ts-hash",
2+
"name": "@stacksjs/ts-hash",
33
"type": "module",
44
"version": "0.0.0",
55
"description": "A SHA-1, SHA-256, SHA-384, SHA-512 hashing library.",

packages/pkcs/src/pkcs1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
*/
4545

4646
import type { ByteStringBuffer } from 'ts-security-utils'
47-
import { sha1 } from 'ts-hash'
47+
import { sha1 } from '@stacksjs/ts-hash'
4848

4949
// Extended Error interface for PKCS1 specific errors
5050
interface PKCS1Error extends Error {

packages/pkcs/test/pkcs1.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, expect, it } from 'bun:test'
2-
import { sha1, sha256 } from 'ts-hash'
2+
import { sha1, sha256 } from '@stacksjs/ts-hash'
33
import { BigInteger } from 'ts-jsbn'
44
import { rsa } from 'ts-rsa'
55
import { createBuffer, decode64, encode64, fillString } from 'ts-security-utils'

packages/utils/src/random.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929

3030
import type { ByteStringBuffer } from '.'
31-
import { sha256 } from 'ts-hash'
31+
import { sha256 } from '@stacksjs/ts-hash'
3232
import { _expandKey, _updateBlock } from 'ts-aes'
3333

3434
// Local implementation of ByteStringBuffer to avoid circular dependencies

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"ts-security": ["./packages/core/src"],
1111
"ts-security-utils": ["./packages/utils/src"],
1212
"ts-base-x": ["./packages/base-x/src"],
13-
"ts-hash": ["./packages/hash/src"],
13+
"@stacksjs/ts-hash": ["./packages/hash/src"],
1414
"ts-pem": ["./packages/pem/src"],
1515
"ts-pki": ["./packages/pki/src"],
1616
"ts-asn1": ["./packages/asn1/src"],

0 commit comments

Comments
 (0)