Skip to content

Commit

Permalink
chore: update repository url
Browse files Browse the repository at this point in the history
  • Loading branch information
bluwy committed Feb 25, 2025
1 parent d6d9ce7 commit 5626e41
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/basic/spinner-ci.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* - There will be no loading dots animation, instead it will be always `...`
* - Instead of erase the previous message, action that is blocked during CI, it will just write a new one.
*
* Issue: https://github.com/natemoo-re/clack/issues/168
* Issue: https://github.com/bombshell-dev/clack/issues/168
*/
import * as p from '@clack/prompts';

Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/natemoo-re/clack",
"url": "git+https://github.com/bombshell-dev/clack.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/natemoo-re/clack/issues"
"url": "https://github.com/bombshell-dev/clack/issues"
},
"homepage": "https://github.com/natemoo-re/clack/tree/main/packages/core#readme",
"homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/core#readme",
"files": ["dist", "CHANGELOG.md"],
"keywords": [
"ask",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function block({
input.off('keypress', clear);
if (hideCursor) output.write(cursor.show);

// Prevent Windows specific issues: https://github.com/natemoo-re/clack/issues/176
// Prevent Windows specific issues: https://github.com/bombshell-dev/clack/issues/176
if (input.isTTY && !isWindows) input.setRawMode(false);

// @ts-expect-error fix for https://github.com/nodejs/node/issues/31762#issuecomment-1441223907
Expand Down
4 changes: 2 additions & 2 deletions packages/prompts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Effortlessly build beautiful command-line apps 🪄 [Try the demo](https://stackblitz.com/edit/clack-prompts?file=index.js)

![clack-prompt](https://github.com/natemoo-re/clack/blob/main/.github/assets/clack-demo.gif)
![clack-prompt](https://github.com/bombshell-dev/clack/blob/main/.github/assets/clack-demo.gif)

---

Expand Down Expand Up @@ -204,4 +204,4 @@ stream.error((function *() { yield 'Error!'; })());
stream.message((function *() { yield 'Hello'; yield ", World" })(), { symbol: color.cyan('~') });
```

[clack-log-prompts](https://github.com/natemoo-re/clack/blob/main/.github/assets/clack-logs.png)
[clack-log-prompts](https://github.com/bombshell-dev/clack/blob/main/.github/assets/clack-logs.png)
6 changes: 3 additions & 3 deletions packages/prompts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/natemoo-re/clack",
"url": "git+https://github.com/bombshell-dev/clack.git",
"directory": "packages/prompts"
},
"bugs": {
"url": "https://github.com/natemoo-re/clack/issues"
"url": "https://github.com/bombshell-dev/clack/issues"
},
"homepage": "https://github.com/natemoo-re/clack/tree/main/packages/prompts#readme",
"homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/prompts#readme",
"files": ["dist", "CHANGELOG.md"],
"author": {
"name": "Nate Moore",
Expand Down

0 comments on commit 5626e41

Please sign in to comment.