Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'purescript/master' into merge-back-to-w…
…eb-fetch
  • Loading branch information
sigma-andex committed Sep 14, 2023
commit 38eadf330efd4073c64825745633819493bdd49f
11 changes: 9 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"name": "purescript-fetch-core",
"license": ["MIT"],
"license": [
"MIT"
],
"repository": {
"type": "git",
"url": "https://github.com/rowtype-yoga/purescript-fetch-core.git"
},
"ignore": ["**/.*", "node_modules", "bower_components", "output"],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"output"
],
"dependencies": {
"purescript-arraybuffer-types": "^v3.0.2",
"purescript-arrays": "^v7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"scripts": {
"clean": "rimraf output && rimraf .pulp-cache",
"build": "eslint src && pulp build -- --censor-lib --strict",
"build": "eslint src && purs-tidy check --config-require src/**/*.purs && pulp build -- --censor-lib --strict",
"test": "spago -x test.dhall test"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/Fetch/Core.purs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ module Fetch.Core

import Effect (Effect)
import Effect.Uncurried (EffectFn2, runEffectFn2)
import Prim.Row as Row
import Fetch.Core.AbortController (AbortSignal)
import Fetch.Core.Request (Request)
import Fetch.Core.Response (Response)
import Prim.Row as Row
import Promise (Promise)

type FetchOptions =
Expand Down
2 changes: 1 addition & 1 deletion src/Fetch/Core/Response.purs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import Data.ArrayBuffer.Types (ArrayBuffer, Uint8Array)
import Effect (Effect)
import Fetch.Core.Headers (Headers)
import Foreign (Foreign)
import Web.File.Blob (Blob)
import Promise (Promise)
import Web.File.Blob (Blob)
import Web.Streams.ReadableStream (ReadableStream)

foreign import data Response :: Type
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.