Skip to content

Commit

Permalink
Release v3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Aug 14, 2024
1 parent fc92934 commit 2453840
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion dist/fetch-json.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! fetch-json v3.3.2 ~~ https://fetch-json.js.org ~~ MIT License
//! fetch-json v3.3.3 ~~ https://fetch-json.js.org ~~ MIT License

export type Json = string | number | boolean | null | undefined | JsonObject | Json[];
export type JsonObject = {
Expand All @@ -22,6 +22,7 @@ export type FetchJsonAltResponse = {
data: Json | null;
response: Response;
};
export type FetchJsonResponse = Json | FetchJsonAltResponse;
export type FetchJsonLogger = (dateIso: string, type?: 'response' | 'request', method?: FetchJsonMethod, domain?: string, url?: string, ok?: boolean, status?: number, statusText?: string, contentType?: string | null) => void;
declare const fetchJson: {
version: string;
Expand Down
4 changes: 2 additions & 2 deletions dist/fetch-json.dev.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! fetch-json v3.3.2 ~~ https://fetch-json.js.org ~~ MIT License
//! fetch-json v3.3.3 ~~ https://fetch-json.js.org ~~ MIT License

const fetchJson = {
version: '3.3.2',
version: '3.3.3',
baseOptions: {},
getBaseOptions() {
return this.baseOptions;
Expand Down
4 changes: 2 additions & 2 deletions dist/fetch-json.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! fetch-json v3.3.2 ~~ https://fetch-json.js.org ~~ MIT License
//! fetch-json v3.3.3 ~~ https://fetch-json.js.org ~~ MIT License

const fetchJson = {
version: '3.3.2',
version: '3.3.3',
baseOptions: {},
getBaseOptions() {
return this.baseOptions;
Expand Down
4 changes: 2 additions & 2 deletions dist/fetch-json.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fetch-json",
"description": "A wrapper around Fetch just for JSON",
"version": "3.3.2",
"version": "3.3.3",
"license": "MIT",
"type": "module",
"module": "dist/fetch-json.js",
Expand Down Expand Up @@ -93,7 +93,7 @@
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.5",
"typescript-eslint": "~8.0",
"typescript-eslint": "~8.1",
"uglify-js": "~3.19",
"w3c-html-validator": "~1.8",
"web-ignition": "~2.2",
Expand Down

0 comments on commit 2453840

Please sign in to comment.