Skip to content

Commit 7ee9bf5

Browse files
committed
Add README.md and bump GitHub actions version
1 parent 729c3a1 commit 7ee9bf5

2 files changed

Lines changed: 27 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
publish:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- uses: pnpm/action-setup@v4
1818

19-
- uses: actions/setup-node@v4
19+
- uses: actions/setup-node@v6
2020
with:
2121
node-version: 24
2222
registry-url: https://registry.npmjs.org

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# @byscripts/toolbox
2+
3+
Monorepo for shared development tools and configurations.
4+
5+
## Packages
6+
7+
| Package | Description |
8+
|---------|-------------|
9+
| [@byscripts/eslint-config](packages/eslint-config) | Shared ESLint configuration for Vue 3 + TypeScript projects |
10+
| [@byscripts/eslint-plugin](packages/eslint-plugin) | Custom ESLint rules |
11+
12+
## Publishing
13+
14+
Packages are automatically published to npm when pushing to `main`. Bump the `version` in the relevant `package.json` files before pushing — only packages with a new version will be published.
15+
16+
## Development
17+
18+
```bash
19+
pnpm install
20+
pnpm build
21+
```
22+
23+
## License
24+
25+
MIT

0 commit comments

Comments
 (0)