Skip to content

Commit

Permalink
1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Julli4n committed Sep 18, 2023
1 parent b61de93 commit daf872f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ since Roblox is extremely inconsistent. This will also parse
#### BEDEV1 (anything except apis.roblox.com)

```typescript
import { parseBEDEV1Error } from "https://deno.land/x/parse_roblox_errors@1.1.1/mod.ts";
import { parseBEDEV1Error } from "https://deno.land/x/parse_roblox_errors@1.1.3/mod.ts";

console.log(
await fetch("http://auth.roblox.com/v2/signup").then(parseBEDEV1Error),
Expand All @@ -26,7 +26,7 @@ console.log(
What the module was made for.

```typescript
import { parseBEDEV2Error } from "https://deno.land/x/parse_roblox_errors@1.1.1/mod.ts";
import { parseBEDEV2Error } from "https://deno.land/x/parse_roblox_errors@1.1.3/mod.ts";

console.log(
await fetch("https://apis.roblox.com/explore-api/v1/get-sort-content").then(
Expand Down
23 changes: 21 additions & 2 deletions scripts/dnt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,31 @@ await build({
},
skipSourceOutput: true,
shims: {
deno: true
deno: true,
customDev: [
{
package: {
name: "whatwg-mimetype",
version: "^3.0.0"
},
globalNames: [],
typesPackage: {
name: "@types/whatwg-mimetype",
version: "^2.1.1"
}
}
]
},
mappings: {
"https://esm.sh/v132/whatwg-mimetype@3.0.0": {
name: "whatwg-mimetype",
version: "^3.0.0"
},
},
package: {
name: "parse-roblox-errors",
description: "A Deno/NodeJS module to parse Roblox errors",
version: "0.1.2",
version: "1.1.3",
homepage: "https://github.com/Julli4n/parse-roblox-errors",
author: "Julli4n",
bugs: {
Expand Down
2 changes: 1 addition & 1 deletion src/deps.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default as MIMEType } from "https://esm.sh/v131/whatwg-mimetype@3.0.0";
export { default as MIMEType } from "https://esm.sh/v132/whatwg-mimetype@3.0.0";

0 comments on commit daf872f

Please sign in to comment.