Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Nov 30, 2023
1 parent 2a50a2c commit 52f7d59
Show file tree
Hide file tree
Showing 11 changed files with 1,137 additions and 915 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yaml
Expand Up @@ -35,3 +35,4 @@ rules:

'@typescript-eslint/no-type-alias': off
'@typescript-eslint/prefer-readonly-parameter-types': off
'@typescript-eslint/max-params': off
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -16,7 +16,7 @@ jobs:
test-node:
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [18, 20, 21]
name: test (node-${{ matrix.node-version }})
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -95,7 +95,7 @@ thoroughly review the code.
@smithy/util-base64
Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
https://cdn.jsdelivr.net/npm/@smithy/[email protected].0/LICENSE
https://cdn.jsdelivr.net/npm/@smithy/[email protected].1/LICENSE
```

## Sponsors
Expand Down
6 changes: 3 additions & 3 deletions dist/index.cjs
@@ -1,6 +1,6 @@
'use strict';

// node_modules/.pnpm/@[email protected].0/node_modules/@smithy/util-base64/dist-es/constants.browser.js
// node_modules/.pnpm/@[email protected].1/node_modules/@smithy/util-base64/dist-es/constants.browser.js
var alphabetByEncoding = {};
var alphabetByValue = new Array(64);
for (let i = 0, start = "A".charCodeAt(0), limit = "Z".charCodeAt(0); i + start <= limit; i++) {
Expand Down Expand Up @@ -29,7 +29,7 @@ var bitsPerLetter = 6;
var bitsPerByte = 8;
var maxLetterValue = 63;

// node_modules/.pnpm/@[email protected].0/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js
// node_modules/.pnpm/@[email protected].1/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js
var fromBase64 = (input) => {
let totalByteLength = input.length / 4 * 3;
if (input.slice(-2) === "==") {
Expand Down Expand Up @@ -64,7 +64,7 @@ var fromBase64 = (input) => {
return new Uint8Array(out);
};

// node_modules/.pnpm/@[email protected].0/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js
// node_modules/.pnpm/@[email protected].1/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js
function toBase64(input) {
let str = "";
for (let i = 0; i < input.length; i += 3) {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.d.cts
Expand Up @@ -207,4 +207,4 @@ declare const seal: (_crypto: _Crypto, object: unknown, password: RawPassword, o
*/
declare const unseal: (_crypto: _Crypto, sealed: string, password: Password | password.Hash, options: SealOptions) => Promise<unknown>;

export { GenerateKeyOptions, HMacResult, Key, Password, RawPassword, SealOptions, SealOptionsSub, algorithms, base64urlDecode, base64urlEncode, bufferToString, clone, decrypt, defaults, encrypt, generateKey, hmacWithPassword, macFormatVersion, macPrefix, password, randomBits, seal, stringToBuffer, unseal };
export { type GenerateKeyOptions, type HMacResult, type Key, type Password, type RawPassword, type SealOptions, type SealOptionsSub, algorithms, base64urlDecode, base64urlEncode, bufferToString, clone, decrypt, defaults, encrypt, generateKey, hmacWithPassword, macFormatVersion, macPrefix, password, randomBits, seal, stringToBuffer, unseal };
2 changes: 1 addition & 1 deletion dist/index.d.ts
Expand Up @@ -207,4 +207,4 @@ declare const seal: (_crypto: _Crypto, object: unknown, password: RawPassword, o
*/
declare const unseal: (_crypto: _Crypto, sealed: string, password: Password | password.Hash, options: SealOptions) => Promise<unknown>;

export { GenerateKeyOptions, HMacResult, Key, Password, RawPassword, SealOptions, SealOptionsSub, algorithms, base64urlDecode, base64urlEncode, bufferToString, clone, decrypt, defaults, encrypt, generateKey, hmacWithPassword, macFormatVersion, macPrefix, password, randomBits, seal, stringToBuffer, unseal };
export { type GenerateKeyOptions, type HMacResult, type Key, type Password, type RawPassword, type SealOptions, type SealOptionsSub, algorithms, base64urlDecode, base64urlEncode, bufferToString, clone, decrypt, defaults, encrypt, generateKey, hmacWithPassword, macFormatVersion, macPrefix, password, randomBits, seal, stringToBuffer, unseal };
6 changes: 3 additions & 3 deletions dist/index.js
@@ -1,4 +1,4 @@
// node_modules/.pnpm/@[email protected].0/node_modules/@smithy/util-base64/dist-es/constants.browser.js
// node_modules/.pnpm/@[email protected].1/node_modules/@smithy/util-base64/dist-es/constants.browser.js
var alphabetByEncoding = {};
var alphabetByValue = new Array(64);
for (let i = 0, start = "A".charCodeAt(0), limit = "Z".charCodeAt(0); i + start <= limit; i++) {
Expand Down Expand Up @@ -27,7 +27,7 @@ var bitsPerLetter = 6;
var bitsPerByte = 8;
var maxLetterValue = 63;

// node_modules/.pnpm/@[email protected].0/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js
// node_modules/.pnpm/@[email protected].1/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js
var fromBase64 = (input) => {
let totalByteLength = input.length / 4 * 3;
if (input.slice(-2) === "==") {
Expand Down Expand Up @@ -62,7 +62,7 @@ var fromBase64 = (input) => {
return new Uint8Array(out);
};

// node_modules/.pnpm/@[email protected].0/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js
// node_modules/.pnpm/@[email protected].1/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js
function toBase64(input) {
let str = "";
for (let i = 0; i < input.length; i += 3) {
Expand Down
40 changes: 20 additions & 20 deletions package.json
Expand Up @@ -34,38 +34,38 @@
"test": "pnpm test:node && pnpm test:deno && pnpm test:bun",
"test:bun": "bun --cwd=tests/bun test",
"test:deno": "deno test tests/deno/index.test.ts --parallel --no-check",
"test:node": "NODE_OPTIONS='--loader tsx' NODE_NO_WARNINGS=1 node--test tests/node/index.test.ts"
"test:node": "tsx --test tests/node/index.test.ts"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.12.1",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@release-it/conventional-changelog": "^7.0.2",
"@smithy/util-base64": "^2.0.0",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"bun-types": "^1.0.6",
"eslint": "^8.51.0",
"@arethetypeswrong/cli": "^0.13.2",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@release-it/conventional-changelog": "^8.0.1",
"@smithy/util-base64": "^2.0.1",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"bun-types": "^1.0.14",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-security": "^1.7.1",
"lefthook": "^1.5.2",
"prettier": "^3.0.3",
"lefthook": "^1.5.4",
"prettier": "^3.1.0",
"prettier-plugin-packagejson": "^2.4.6",
"publint": "^0.2.4",
"release-it": "^16.2.1",
"publint": "^0.2.5",
"release-it": "^17.0.0",
"replace": "^1.2.2",
"test": "^3.3.0",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2"
"tsup": "^8.0.1",
"tsx": "^4.6.1",
"typescript": "^5.3.2"
},
"packageManager": "pnpm@8.9.0",
"packageManager": "pnpm@8.11.0",
"runkitExampleFilename": "dist/example.js"
}

0 comments on commit 52f7d59

Please sign in to comment.