Skip to content

Release v1.4.0 #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hackolade/fetch",
"version": "1.3.0",
"version": "1.4.0",
"description": "A HTTP client that works in the browser and in Electron",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -34,7 +34,7 @@
"esbuild": "npx esbuild ./src/index.ts --bundle --tree-shaking=true --minify --external:electron",
"build:esm": "npm run esbuild -- --outdir=./dist/esm --format=esm --platform=node --define:BROWSER_BUILD=false",
"build:cjs": "npm run esbuild -- --outdir=./dist/cjs --format=cjs --platform=node --define:BROWSER_BUILD=false",
"build:browser": "npm run esbuild -- --outdir=./dist/browser --format=esm --platform=browser --define:BROWSER_BUILD=true",
"build:browser": "npm run esbuild -- --outdir=./dist/browser --format=iife --platform=browser --define:BROWSER_BUILD=true",
"build": "npm run build:cjs && npm run build:esm && npm run build:esm:package && npm run build:browser",
"docker:compose": "docker compose --profile=test up --build --force-recreate --always-recreate-deps --remove-orphans",
"docker:server": "npm run docker:compose -- server",
Expand Down