Skip to content

Commit 96e0c91

Browse files
committed
chore: wip
1 parent 1090ead commit 96e0c91

File tree

11 files changed

+25
-63
lines changed

11 files changed

+25
-63
lines changed

CHANGELOG.md

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -125,27 +125,3 @@
125125
### ❤️ Contributors
126126

127127
- Chris <chrisbreuer93@gmail.com>
128-
129-
## v0.0.5...main
130-
131-
[compare changes](https://github.com/stacksjs/ts-starter/compare/v0.0.5...main)
132-
133-
### 🚀 Enhancements
134-
135-
- Add pkgx deps ([319c066](https://github.com/stacksjs/ts-starter/commit/319c066))
136-
- Use flat eslint config ([cdb0093](https://github.com/stacksjs/ts-starter/commit/cdb0093))
137-
138-
### 🏡 Chore
139-
140-
- Fix badge ([bc3b000](https://github.com/stacksjs/ts-starter/commit/bc3b000))
141-
- Minor updates ([78dc522](https://github.com/stacksjs/ts-starter/commit/78dc522))
142-
- Housekeeping ([e1cba3b](https://github.com/stacksjs/ts-starter/commit/e1cba3b))
143-
- Additional housekeeping ([f5dc625](https://github.com/stacksjs/ts-starter/commit/f5dc625))
144-
- Add `.gitattributes` ([7080f8c](https://github.com/stacksjs/ts-starter/commit/7080f8c))
145-
- Adjust deps ([cc71b42](https://github.com/stacksjs/ts-starter/commit/cc71b42))
146-
- Adjust wording ([3bc54b3](https://github.com/stacksjs/ts-starter/commit/3bc54b3))
147-
- Adjust readme cover ([e6acbb2](https://github.com/stacksjs/ts-starter/commit/e6acbb2))
148-
149-
### ❤️ Contributors
150-
151-
- Chris <chrisbreuer93@gmail.com>

README.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<p align="center"><img src=".github/art/cover.jpg" alt="Social Card of this repo"></p>
22

3-
[![npm version][npm-version-src]][npm-version-href]
4-
[![GitHub Actions][github-actions-src]][github-actions-href]
3+
[![npm version](https://img.shields.io/npm/v/bun-queue?style=flat-square)](https://npmjs.com/package/bun-queue)
4+
[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/stacksjs/bun-queue/ci.yml?style=flat-square&branch=main)](https://github.com/stacksjs/bun-queue/actions?query=workflow%3Aci)
55
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
6-
<!-- [![npm downloads][npm-downloads-src]][npm-downloads-href] -->
7-
<!-- [![Codecov][codecov-src]][codecov-href] -->
86

97
# bun-queue
108

@@ -220,12 +218,3 @@ We would like to extend our thanks to the following sponsors for funding Stacks
220218
The MIT License (MIT). Please see [LICENSE](LICENSE.md) for more information.
221219

222220
Made with 💙
223-
224-
<!-- Badges -->
225-
[npm-version-src]: https://img.shields.io/npm/v/bun-queue?style=flat-square
226-
[npm-version-href]: https://npmjs.com/package/bun-queue
227-
[github-actions-src]: https://img.shields.io/github/actions/workflow/status/stacksjs/bun-queue/ci.yml?style=flat-square&branch=main
228-
[github-actions-href]: https://github.com/stacksjs/bun-queue/actions?query=workflow%3Aci
229-
230-
<!-- [codecov-src]: https://img.shields.io/codecov/c/gh/stacksjs/bun-queue/main?style=flat-square
231-
[codecov-href]: https://codecov.io/gh/stacksjs/bun-queue -->

build.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { dts } from 'bun-plugin-dtsx'
22

3+
// eslint-disable-next-line ts/no-top-level-await
34
await Bun.build({
45
entrypoints: ['src/index.ts'],
56
outdir: './dist',

docs/.vitepress/theme/styles/vars.css

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@
5656
* Component: Button
5757
* -------------------------------------------------------------------------- */
5858

59-
:root {
60-
--vp-button-brand-border: var(--vp-c-brand-1);
61-
--vp-button-brand-text: var(--vp-c-text-dark-1);
62-
--vp-button-brand-bg: var(--vp-c-brand-1);
63-
--vp-button-brand-hover-border: var(--vp-c-brand-2);
64-
--vp-button-brand-hover-text: var(--vp-c-text-dark-1);
65-
--vp-button-brand-hover-bg: var(--vp-c-brand-2);
66-
--vp-button-brand-active-border: var(--vp-c-brand-2);
67-
--vp-button-brand-active-text: var(--vp-c-text-dark-1);
68-
--vp-button-brand-active-bg: var(--vp-c-brand-2);
69-
}
59+
:root {
60+
--vp-button-brand-border: var(--vp-c-brand-1);
61+
--vp-button-brand-text: var(--vp-c-text-dark-1);
62+
--vp-button-brand-bg: var(--vp-c-brand-1);
63+
--vp-button-brand-hover-border: var(--vp-c-brand-2);
64+
--vp-button-brand-hover-text: var(--vp-c-text-dark-1);
65+
--vp-button-brand-hover-bg: var(--vp-c-brand-2);
66+
--vp-button-brand-active-border: var(--vp-c-brand-2);
67+
--vp-button-brand-active-text: var(--vp-c-text-dark-1);
68+
--vp-button-brand-active-bg: var(--vp-c-brand-2);
69+
}
7070

7171
/**
7272
* Component: Home

docs/config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Configuration
22

3-
_This is just an example of the bun-queue docs._
3+
This is just an example of the bun-queue docs.
44

55
The Reverse Proxy can be configured using a `reverse-proxy.config.ts` _(or `reverse-proxy.config.js`)_ file and it will be automatically loaded when running the `reverse-proxy` command.
66

@@ -66,7 +66,7 @@ const config: ReverseProxyOptions = {
6666
export default config
6767
```
6868
69-
_Then run:_
69+
Then run:
7070
7171
```bash
7272
./rpx start

docs/cron-expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
A cron expression consists of five fields that specify when a job should run:
88

9-
```
9+
```text
1010
┌───────────── minute (0 - 59)
1111
│ ┌───────────── hour (0 - 23)
1212
│ │ ┌───────────── day of month (1 - 31)

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Install
22

3-
_This is just an example of the bun-queue docs._
3+
This is just an example of the bun-queue docs.
44

55
Installing `rpx` is easy. Simply pull it in via your package manager of choice, or download the binary directly.
66

docs/intro.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
> A TypeScript Starter Kit that will help you bootstrap your next project without minimal opinion.
66
7-
# bun-queue
7+
## bun-queue
88

99
This is an opinionated TypeScript Starter kit to help kick-start development of your next Bun package.
1010

@@ -25,7 +25,7 @@ bun run build # builds the library for production-ready use
2525
bun run release # automates git commits, versioning, and changelog generations
2626
```
2727

28-
_Check out the package.json scripts for more commands._
28+
Check out the package.json scripts for more commands.
2929

3030
### Developer Experience (DX)
3131

@@ -86,8 +86,3 @@ We would like to extend our thanks to the following sponsors for funding Stacks
8686
The MIT License (MIT). Please see [LICENSE](https://github.com/stacksjs/bun-queue/tree/main/LICENSE.md) for more information.
8787

8888
Made with 💙
89-
90-
<!-- Badges -->
91-
92-
<!-- [codecov-src]: https://img.shields.io/codecov/c/gh/stacksjs/rpx/main?style=flat-square
93-
[codecov-href]: https://codecov.io/gh/stacksjs/rpx -->

docs/postcardware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Two things are true: Stacks OSS will always stay open-source, and we do love to receive postcards from wherever Stacks is used! 🌍
44

5-
_We also publish them on our website._
5+
We also publish them on our website.
66

77
## Address
88

docs/sponsors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,6 @@ You can also try to convince your employer to sponsor Stacks as a business. This
126126

127127
***
128128

129-
##### Thanks to Vue.js for the inspiration of this sponsorship page
129+
#### Thanks to Vue.js for the inspiration of this sponsorship page
130130

131-
*You can find their sponsorship page [here](https://vuejs.org/sponsor/).*
131+
You can find their [Vue.js sponsorship page](https://vuejs.org/sponsor/) for reference.

0 commit comments

Comments
 (0)