Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: CI

on:
pull_request:
branches: [ main ]
pull_request:
branches: [next]

jobs:
CI:
Expand All @@ -24,4 +24,4 @@ jobs:
run: pnpm check

- name: Build
run: pnpm build:registry
run: pnpm build:registry
5 changes: 2 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Publish

on:
push:
branches:
- main
branches: [main, next]

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand Down Expand Up @@ -35,4 +34,4 @@ jobs:
env:
JSREPO_TOKEN: ${{ secrets.JSREPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_ENV: production
NODE_ENV: production
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Test"
on:
pull_request:
pull_request:

jobs:
test:
Expand All @@ -25,7 +25,7 @@ jobs:
run: pnpm install

- name: Test
run: pnpm dlx vitest --coverage.enabled true
run: pnpm vitest --coverage.enabled true

- name: Report Coverage
# Set if: always() to also generate the report if tests are failing
Expand Down
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# std

## 5.3.1
### Patch Changes


- feat: jsrepo v3 beta ([#111](https://github.com/ieedan/std/pull/111))


- bump jsrepo ([#110](https://github.com/ieedan/std/pull/110))


- bump jsrepo ([#110](https://github.com/ieedan/std/pull/110))

## 5.3.1-beta.2
### Patch Changes


- bump jsrepo ([#110](https://github.com/ieedan/std/pull/110))

## 5.3.1-beta.1
### Patch Changes


- bump jsrepo ([#110](https://github.com/ieedan/std/pull/110))

## 5.3.1-beta.0
### Patch Changes


- feat: jsrepo v3 beta ([#111](https://github.com/ieedan/std/pull/111))

## 5.3.0
### Minor Changes

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Types and utility functions brokered with [jsrepo](https://jsrepo.dev). If I hav
Add as a repo in config:

```bash
jsrepo init @ieedan/std
pnpm dlx jsrepo init @ieedan/std
```

then add your blocks:

```bash
jsrepo add ts/result
pnpm dlx jsrepo add ts/result
```

# Blocks
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"attributePosition": "auto"
},
"files": {
"ignore": ["dist", "node_modules", "docs", "blocks-manifest.json", "coverage"]
"ignore": ["dist", "node_modules", "docs", "registry.json", "coverage"]
},
"organizeImports": { "enabled": true },
"linter": {
Expand Down
31 changes: 0 additions & 31 deletions jsrepo-build-config.json

This file was deleted.

Loading