Skip to content

Commit 58c7c70

Browse files
committed
Rename packages to JS.Fetch
1 parent 38eadf3 commit 58c7c70

24 files changed

+45
-48
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# purescript-fetch-core
22

3-
[![Latest release](http://img.shields.io/github/release/rowtype-yoga/purescript-fetch-core.svg)](https://github.com/rowtype-yoga/purescript-fetch-core/releases)
4-
[![Build status](https://github.com/rowtype-yoga/purescript-fetch-core/workflows/CI/badge.svg?branch=master)](https://github.com/rowtype-yoga/purescript-fetch-core/actions?query=workflow%3ACI+branch%3Amaster)
3+
[![Latest release](http://img.shields.io/github/release/purescript-contrib/purescript-js-fetch.svg)](https://github.com/purescript-contrib/purescript-js-fetch/releases)
4+
[![Build status](https://github.com/purescript-contrib/purescript-js-fetch/workflows/CI/badge.svg?branch=master)](https://github.com/purescript-contrib/purescript-js-fetch/actions?query=workflow%3ACI+branch%3Amaster)
55
[![Pursuit](https://pursuit.purescript.org/packages/purescript-fetch-core/badge)](https://pursuit.purescript.org/packages/purescript-fetch-core)
66

77
Types and low-level implementations for the [WHATWG Fetch Living Standard](https://fetch.spec.whatwg.org/).
@@ -11,9 +11,9 @@ For a high-level library see [`purescript-fetch`](https://github.com/rowtype-yog
1111
## Installation
1212

1313
```
14-
spago install fetch-core
14+
spago install js-fetch
1515
```
1616

1717
## Documentation
1818

19-
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-fetch-core).
19+
Module documentation is [published on Pursuit](http://pursuit.purescript.org/packages/purescript-js-fetch).

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
],
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/rowtype-yoga/purescript-fetch-core.git"
8+
"url": "https://github.com/purescript-contrib/purescript-js-fetch.git"
99
},
1010
"ignore": [
1111
"**/.*",

spago.dhall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
, packages = ./packages.dhall
2323
, sources = [ "src/**/*.purs" ]
2424
, license = "MIT"
25-
, repository = "https://github.com/rowtype-yoga/purescript-fetch-core.git"
25+
, repository = "https://github.com/purescript-contrib/purescript-js-fetch.git"
2626
}
File renamed without changes.

src/Fetch/Core.purs renamed to src/JS/Fetch/Core.purs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
module Fetch.Core
1+
module JS.Fetch
22
( FetchOptions
33
, fetch
44
, fetchWithOptions
55
) where
66

77
import Effect (Effect)
88
import Effect.Uncurried (EffectFn2, runEffectFn2)
9-
import Fetch.Core.AbortController (AbortSignal)
10-
import Fetch.Core.Request (Request)
11-
import Fetch.Core.Response (Response)
9+
import JS.Fetch.AbortController (AbortSignal)
10+
import JS.Fetch.Request (Request)
11+
import JS.Fetch.Response (Response)
1212
import Prim.Row as Row
1313
import Promise (Promise)
1414

File renamed without changes.

src/Fetch/Core/AbortController.purs renamed to src/JS/Fetch/Fetch/AbortController.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module Fetch.Core.AbortController where
1+
module JS.Fetch.AbortController where
22

33
import Effect (Effect)
44
import Prelude (Unit)

src/Fetch/Core/Duplex.purs renamed to src/JS/Fetch/Fetch/Duplex.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module Fetch.Core.Duplex where
1+
module JS.Fetch.Duplex where
22

33
import Prelude
44

File renamed without changes.

src/Fetch/Core/Headers.purs renamed to src/JS/Fetch/Fetch/Headers.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module Fetch.Core.Headers
1+
module JS.Fetch.Headers
22
( Headers
33
, fromFoldable
44
, fromRecord

0 commit comments

Comments
 (0)