Skip to content

Commit 4617b2e

Browse files
committed
footer
1 parent 8b1831d commit 4617b2e

File tree

5 files changed

+37
-48
lines changed

5 files changed

+37
-48
lines changed

FOOTER.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
## Development
2+
3+
### Setup
4+
5+
1. Clone the repository:
6+
7+
```bash
8+
git clone https://github.com/hyperweb-io/dev-utils.git
9+
```
10+
11+
2. Install dependencies:
12+
13+
```bash
14+
cd dev-utils
15+
pnpm install
16+
pnpm build
17+
```
18+
19+
3. Test the package of interest:
20+
21+
```bash
22+
cd packages/<packagename>
23+
pnpm test:watch
24+
```
25+
26+
## Credits
27+
28+
Built for developers, with developers.
29+
👉 https://launchql.com | https://hyperweb.io
30+
31+
## Disclaimer
32+
33+
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
34+
35+
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.

packages/appstash/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Simple, clean application directory resolution for Node.js applications.
66

77
```bash
88
npm install appstash
9-
# or
10-
pnpm add appstash
119
```
1210

1311
## Features

packages/inquirerer/README.md

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ npm install inquirerer
5757
- [Custom Validation](#custom-validation)
5858
- [CLI Helper](#cli-helper)
5959
- [Developing](#developing)
60-
- [Disclaimer](#disclaimer)
6160

6261
## Quick Start
6362

@@ -700,32 +699,4 @@ const handler: CommandHandler = async (argv, prompter) => {
700699

701700
const cli = new CLI(handler, options);
702701
await cli.run();
703-
```
704-
705-
## Developing
706-
707-
When first cloning the repo:
708-
709-
```bash
710-
npm install
711-
npm run build
712-
```
713-
714-
Run in development mode:
715-
716-
```bash
717-
npm run dev
718-
```
719-
720-
Run tests:
721-
722-
```bash
723-
npm test
724-
npm run test:watch
725-
```
726-
727-
## Disclaimer
728-
729-
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
730-
731-
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
702+
```

packages/makage/README.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -185,18 +185,3 @@ Most monorepo packages need the same basic build operations:
185185
- Build TypeScript for both CJS and ESM
186186

187187
Instead of installing multiple dependencies (`cpy`, `rimraf`, etc.) in every package, `makage` provides these essentials with zero dependencies, using only Node.js built-in modules.
188-
189-
## Development
190-
191-
When first cloning the repo:
192-
193-
```bash
194-
pnpm install
195-
pnpm build
196-
```
197-
198-
Run tests:
199-
200-
```bash
201-
pnpm test
202-
```

packages/yanse/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,6 @@ console.log(customYanse.red('Not colored'));
241241
- **TypeScript First** - Written in TypeScript with full type support
242242
- **Familiar API** - Drop-in replacement for chalk
243243

244-
## Credits
244+
## OSS Credit
245245

246246
Inspired by [chalk](https://github.com/chalk/chalk) and [ansi-colors](https://github.com/doowb/ansi-colors).

0 commit comments

Comments
 (0)