-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests. Make build pipeline work in both Deno 1 and Deno 2.
- Loading branch information
Showing
4 changed files
with
92 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,4 +109,4 @@ if (Deno.args[1] === "clean") { | |
2, | ||
)), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
{ | ||
"description": "Base64 and base64url to string or arraybuffer, and back. Node, Deno or browser.", | ||
"author": "Hexagon <github.com/hexagon>", | ||
"contributors": [ | ||
{ | ||
"name": "Niklas von Hertzen", | ||
"email": "niklasvh@gmail.com", | ||
"url": "https://hertzen.com" | ||
} | ||
], | ||
"homepage": "https://base64.56k.guru", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/hexagon/base64" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/hexagon/base64/issues" | ||
}, | ||
"files": [ | ||
"dist/*", | ||
"SECURITY.md" | ||
], | ||
"keywords": [ | ||
"base64", | ||
"base64url", | ||
"parser", | ||
"isomorphic", | ||
"arraybuffer", | ||
"string" | ||
], | ||
"type": "module", | ||
"main": "./dist/base64.cjs", | ||
"browser": "./dist/base64.umd.js", | ||
"module": "./dist/base64.js", | ||
"types": "./dist/base64.d.ts", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { "default": "./dist/base64.js", "types": "./dist/base64.d.ts" }, | ||
"require": { "default": "./dist/base64.cjs", "types": "./dist/base64.d.cts" }, | ||
"browser": "./dist/base64.umd.js" | ||
} | ||
}, | ||
"license": "MIT" | ||
} | ||
"description": "Base64 and base64url to string or arraybuffer, and back. Node, Deno or browser.", | ||
"author": "Hexagon <github.com/hexagon>", | ||
"contributors": [ | ||
{ | ||
"name": "Niklas von Hertzen", | ||
"email": "niklasvh@gmail.com", | ||
"url": "https://hertzen.com" | ||
} | ||
], | ||
"homepage": "https://base64.56k.guru", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/hexagon/base64" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/hexagon/base64/issues" | ||
}, | ||
"files": [ | ||
"dist/*", | ||
"SECURITY.md" | ||
], | ||
"keywords": [ | ||
"base64", | ||
"base64url", | ||
"parser", | ||
"isomorphic", | ||
"arraybuffer", | ||
"string" | ||
], | ||
"type": "module", | ||
"main": "./dist/base64.cjs", | ||
"browser": "./dist/base64.umd.js", | ||
"module": "./dist/base64.js", | ||
"types": "./dist/base64.d.ts", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { "default": "./dist/base64.js", "types": "./dist/base64.d.ts" }, | ||
"require": { "default": "./dist/base64.cjs", "types": "./dist/base64.d.cts" }, | ||
"browser": "./dist/base64.umd.js" | ||
} | ||
}, | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters