Skip to content

Commit 0724d46

Browse files
chore: go live (#2)
1 parent b235c12 commit 0724d46

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow is triggered when a GitHub release is created.
22
# It can also be run manually to re-publish to NPM in case it failed for some reason.
3-
# You can run this workflow by navigating to https://www.github.com/flowglad/flowglad-ts/actions/workflows/publish-npm.yml
3+
# You can run this workflow by navigating to https://www.github.com/flowglad/flowglad-node/actions/workflows/publish-npm.yml
44
name: Publish NPM
55
on:
66
workflow_dispatch:

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'flowglad/flowglad-ts' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'flowglad/flowglad-node' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1313

1414
steps:
1515
- uses: actions/checkout@v4

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ If you’d like to use the repository from source, you can either install from g
4242
To install via git:
4343

4444
```sh
45-
$ npm install git+ssh://[email protected]:flowglad/flowglad-ts.git
45+
$ npm install git+ssh://[email protected]:flowglad/flowglad-node.git
4646
```
4747

4848
Alternatively, to link a local copy of the repo:
4949

5050
```sh
5151
# Clone
52-
$ git clone https://www.github.com/flowglad/flowglad-ts
53-
$ cd flowglad-ts
52+
$ git clone https://www.github.com/flowglad/flowglad-node
53+
$ cd flowglad-node
5454

5555
# With yarn
5656
$ yarn link
@@ -99,7 +99,7 @@ the changes aren't made through the automated pipeline, you may want to make rel
9999

100100
### Publish with a GitHub workflow
101101

102-
You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/flowglad/flowglad-ts/actions/workflows/publish-npm.yml). This requires a setup organization or repository secret to be set up.
102+
You can release to package managers by using [the `Publish NPM` GitHub action](https://www.github.com/flowglad/flowglad-node/actions/workflows/publish-npm.yml). This requires a setup organization or repository secret to be set up.
103103

104104
### Publish manually
105105

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ import Flowglad from '@flowglad/node';
285285
```
286286

287287
To do the inverse, add `import "@flowglad/node/shims/node"` (which does import polyfills).
288-
This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/flowglad/flowglad-ts/tree/main/src/_shims#readme)).
288+
This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/flowglad/flowglad-node/tree/main/src/_shims#readme)).
289289

290290
### Logging and middleware
291291

@@ -357,7 +357,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
357357

358358
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
359359

360-
We are keen for your feedback; please open an [issue](https://www.github.com/flowglad/flowglad-ts/issues) with questions, bugs, or suggestions.
360+
We are keen for your feedback; please open an [issue](https://www.github.com/flowglad/flowglad-node/issues) with questions, bugs, or suggestions.
361361

362362
## Requirements
363363

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "dist/index.d.ts",
77
"main": "dist/index.js",
88
"type": "commonjs",
9-
"repository": "github:flowglad/flowglad-ts",
9+
"repository": "github:flowglad/flowglad-node",
1010
"license": "Apache-2.0",
1111
"packageManager": "[email protected]",
1212
"files": [

src/_shims/index-deno.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function getDefaultAgent(url: string) {
7979
}
8080
export function fileFromPath() {
8181
throw new Error(
82-
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/flowglad/flowglad-ts#file-uploads',
82+
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/flowglad/flowglad-node#file-uploads',
8383
);
8484
}
8585

src/_shims/web-runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export function getRuntime({ manuallyImported }: { manuallyImported?: boolean }
9595
getDefaultAgent: (url: string) => undefined,
9696
fileFromPath: () => {
9797
throw new Error(
98-
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/flowglad/flowglad-ts#file-uploads',
98+
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/flowglad/flowglad-node#file-uploads',
9999
);
100100
},
101101
isFsReadStream: (value: any) => false,

0 commit comments

Comments
 (0)