Skip to content

Commit

Permalink
chore: moker update
Browse files Browse the repository at this point in the history
  • Loading branch information
hongaar committed May 27, 2024
1 parent 8d04143 commit 24e4f1f
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 16 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: dependency-review

on:
pull_request:

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/dependency-review-action@v3
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
name: release

on:
workflow_dispatch:
push:
branches:
- main

jobs:
release:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/update-node-versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: update-node-versions

on:
workflow_dispatch:
schedule:
- cron: "30 7 * * 0"

jobs:
update-node-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hongaar/update-node-versions@v2
- uses: peter-evans/create-pull-request@v5
with:
title: "feat: update node.js versions"
body: |
Automated changes by [update-node-versions](https://github.com/hongaar/update-node-versions) GitHub action
BREAKING CHANGE: This updates the supported node.js versions
token: ${{ secrets.GH_PAT }}
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
## [1.12.15](https://github.com/hongaar/bandersnatch/compare/v1.12.14...v1.12.15) (2024-04-10)


### Bug Fixes

* **deps:** bump tar from 6.1.11 to 6.2.1 ([#596](https://github.com/hongaar/bandersnatch/issues/596)) ([bdb1c06](https://github.com/hongaar/bandersnatch/commit/bdb1c06ac2e0d0d2c9140b9ee70828c521ded5df))
- **deps:** bump tar from 6.1.11 to 6.2.1
([#596](https://github.com/hongaar/bandersnatch/issues/596))
([bdb1c06](https://github.com/hongaar/bandersnatch/commit/bdb1c06ac2e0d0d2c9140b9ee70828c521ded5df))

## [1.12.14](https://github.com/hongaar/bandersnatch/compare/v1.12.13...v1.12.14) (2024-02-21)


### Bug Fixes

* **deps:** bump ip from 1.1.8 to 1.1.9 ([#579](https://github.com/hongaar/bandersnatch/issues/579)) ([c5c103e](https://github.com/hongaar/bandersnatch/commit/c5c103e3e3f693e444d5f30727dc21769007ab60))
- **deps:** bump ip from 1.1.8 to 1.1.9
([#579](https://github.com/hongaar/bandersnatch/issues/579))
([c5c103e](https://github.com/hongaar/bandersnatch/commit/c5c103e3e3f693e444d5f30727dc21769007ab60))

## [1.12.13](https://github.com/hongaar/bandersnatch/compare/v1.12.12...v1.12.13) (2023-11-27)

Expand Down
27 changes: 15 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,10 @@ Simple and intuitive yet powerful and versatile framework for Node.js CLI progra
yarn|npm add bandersnatch
```

> [!NOTE]
> We recommend using an _Active LTS_ or _Maintenance LTS_ [Node.js version](https://nodejs.org/en/about/releases/).
> _Current_ versions are tested, but not guaranteed to work.
> [!NOTE]
> We recommend using an _Active LTS_ or _Maintenance LTS_ Node.js
> [version](https://nodejs.org/en/about/releases/). _Current_ versions are
> tested, but not guaranteed to work.
### Simple example

Expand Down Expand Up @@ -316,10 +317,10 @@ $ node pizza.js "The Netherlands" --name Joram --confirmed
}
```

> [!WARNING]
> Please note that even though `--confirmed` was specified on the command
> line, it was still being prompted. This is a known issue. In this case, the
> default value was the same as the input, in which case bandersnatch doesn't know
> [!WARNING]
> Please note that even though `--confirmed` was specified on the command line,
> it was still being prompted. This is a known issue. In this case, the default
> value was the same as the input, in which case bandersnatch doesn't know
> whether a value was explicitly passed in or inherited from the default value.
### TypeScript
Expand Down Expand Up @@ -359,8 +360,9 @@ type Args = {
};
```

> [!TIP]
> More examples in the [examples](https://github.com/hongaar/bandersnatch/tree/main/examples)
> [!TIP]
> More examples in the
> [examples](https://github.com/hongaar/bandersnatch/tree/main/examples)
> directory.
## API
Expand Down Expand Up @@ -596,8 +598,9 @@ provides [everything you need](https://nodejs.org/api/console.html).
There are many options to bundle your application for distribution. We'll
discuss a common pattern.

> [!TIP]
> An example can be found in the [examples/bundle](https://github.com/hongaar/bandersnatch/tree/main/examples/bundle)
> [!TIP]
> An example can be found in the
> [examples/bundle](https://github.com/hongaar/bandersnatch/tree/main/examples/bundle)
> directory.
Init a `package.json` if needed:
Expand Down Expand Up @@ -739,7 +742,7 @@ To create a binary (your app with Node.js bundled), add this script to
}
```

> [!TIP]
> [!TIP]
> Omit `-t host` to create binaries for all platforms.
Run `yarn bundle` and then `./echo --help`. 💪
Expand Down

0 comments on commit 24e4f1f

Please sign in to comment.