Skip to content

Commit 9f0ec33

Browse files
committed
chore: update maintainer & urls
1 parent c7aa5f6 commit 9f0ec33

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# jsaddle-wasm
2-
[![CI](https://github.com/amesgen/jsaddle-wasm/workflows/CI/badge.svg)](https://github.com/amesgen/jsaddle-wasm/actions)
2+
[![CI](https://github.com/haskell-wasm/jsaddle-wasm/workflows/CI/badge.svg)](https://github.com/haskell-wasm/jsaddle-wasm/actions)
33
[![Hackage](https://img.shields.io/hackage/v/jsaddle-wasm)](https://hackage.haskell.org/package/jsaddle-wasm)
44
[![Haddocks](https://img.shields.io/badge/documentation-Haddocks-purple)](https://hackage.haskell.org/package/jsaddle-wasm/docs/Language-Javascript-JSaddle-Wasm.html)
55

@@ -12,9 +12,9 @@ This can for example be used to compile and run [Miso][] or [Reflex][] apps in t
1212
1313
## Examples
1414

15-
- Miso examples: https://github.com/tweag/ghc-wasm-miso-examples
15+
- Miso examples: https://github.com/haskell-wasm/ghc-wasm-miso-examples
1616

17-
- Reflex examples: https://github.com/tweag/ghc-wasm-reflex-examples
17+
- Reflex examples: https://github.com/haskell-wasm/ghc-wasm-reflex-examples
1818

1919
- Ormolu Live: https://github.com/tweag/ormolu/tree/master/ormolu-live
2020
(uses the web worker approach described below)
@@ -44,7 +44,7 @@ Now, run the post-linker script as described in the [GHC User's Guide][ghc-users
4444

4545
Then, following the [GHC User's Guide][ghc-users-guide-js-api], you can run the Wasm binary in the browser via e.g. [browser_wasi_shim][]:
4646
```javascript
47-
import { WASI, OpenFile, File, ConsoleStdout } from "@bjorn3/browser_wasi_shim";
47+
import { WASI, OpenFile, File, ConsoleStdout } from "https://esm.sh/gh/haskell-wasm/browser_wasi_shim";
4848
import ghc_wasm_jsffi from "./ghc_wasm_jsffi.js";
4949

5050
const fds = [
@@ -130,12 +130,12 @@ package jsaddle-wasm
130130

131131
[^missing-sync-jsffi]: Otherwise, you will see errors involving `unknown type name 'HsFUN'`.
132132

133-
[JSaddle]: https://github.com/ghcjs/jsaddle
133+
[JSaddle]: https://github.com/haskell-wasm/jsaddle
134134
[GHC Wasm backend]: https://www.tweag.io/blog/2022-11-22-wasm-backend-merged-in-ghc
135135
[Miso]: https://github.com/dmjio/miso
136136
[Reflex]: https://github.com/reflex-frp/reflex
137137
[ghc-wasm-meta]: https://gitlab.haskell.org/haskell-wasm/ghc-wasm-meta
138-
[browser_wasi_shim]: https://github.com/bjorn3/browser_wasi_shim
138+
[browser_wasi_shim]: https://github.com/haskell-wasm/browser_wasi_shim
139139
[ghc-users-guide-js-api]: https://ghc.gitlab.haskell.org/ghc/doc/users_guide/wasm.html#the-javascript-api
140140
[WebGHC]: https://webghc.github.io
141141
[Channel Messaging API]: https://developer.mozilla.org/en-US/docs/Web/API/Channel_Messaging_API

jsaddle-wasm.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ version: 0.2.0.0
44
synopsis: Run JSaddle JSM with the GHC Wasm backend
55
description: Run JSaddle @JSM@ with the GHC Wasm backend.
66
category: Web, Javascript
7-
homepage: https://github.com/amesgen/jsaddle-wasm
8-
bug-reports: https://github.com/amesgen/jsaddle-wasm/issues
7+
homepage: https://github.com/haskell-wasm/jsaddle-wasm
8+
bug-reports: https://github.com/haskell-wasm/jsaddle-wasm/issues
99
license: CC0-1.0
1010
license-file: LICENSE
1111
extra-source-files: README.md
1212
author: amesgen
13-
maintainer: amesgen@amesgen.de
13+
maintainer: terrorjack@type.dance
1414
extra-doc-files: CHANGELOG.md
1515

1616
source-repository head
17-
location: https://github.com/amesgen/jsaddle-wasm
17+
location: https://github.com/haskell-wasm/jsaddle-wasm.git
1818
type: git
1919

2020
flag eval-via-jsffi

src-wasm/Language/Javascript/JSaddle/Wasm/Internal/TH.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ eval jsChunk argTys = do
4141
-- | The JSaddle GHCJS helpers need to be available in the global scope.
4242
-- Usually, this is done by evaluating them in a global scope; however, we want
4343
-- to avoid JS eval (due to CSP, see
44-
-- https://github.com/tweag/ghc-wasm-miso-examples/issues/33), so we instead use
44+
-- https://github.com/haskell-wasm/ghc-wasm-miso-examples/issues/33), so we instead use
4545
-- a hack, namely transforming
4646
--
4747
-- > function foo(a) {

src/Language/Javascript/JSaddle/Wasm.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- | See the [README](https://github.com/amesgen/jsaddle-wasm) for more details.
1+
-- | See the [README](https://github.com/haskell-wasm/jsaddle-wasm) for more details.
22
--
33
-- While this package also compiles on non-Wasm GHCs for convenience, running
44
-- any function from this module will immediately fail in that case.

0 commit comments

Comments
 (0)