Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jaywcjlove/recursive-readdir-files
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.3
Choose a base ref
...
head repository: jaywcjlove/recursive-readdir-files
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.0
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 19, 2021

  1. Copy the full SHA
    684065f View commit details

Commits on Sep 2, 2021

  1. Copy the full SHA
    1062bfe View commit details
  2. released v1.1.0

    jaywcjlove committed Sep 2, 2021
    Copy the full SHA
    e7fc128 View commit details
Showing with 12 additions and 14 deletions.
  1. +7 −6 .github/workflows/ci.yml
  2. +5 −8 package.json
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -27,26 +27,27 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
package-path: ./package.json

- name: Look Changelog
uses: jaywcjlove/changelog-generator@v1.4.3
- name: Generate Changelog
id: changelog
uses: jaywcjlove/changelog-generator@v1.4.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
filter-author: (jaywcjlove|小弟调调™|dependabot\[bot\]|Renovate Bot|renovate\-bot)
head-ref: ${{steps.create_tag.outputs.version}}
filter-author: (jaywcjlove|小弟调调™|dependabot\[bot\]|Renovate Bot)
filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}'

- name: Create Release
uses: ncipollo/release-action@v1
if: steps.create_tag.outputs.successful
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ steps.create_tag.outputs.version }}
tag: ${{ steps.create_tag.outputs.version }}
token: ${{ secrets.GITHUB_TOKEN }}
body: |
[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/recursive-readdir-files@${{steps.changelog.outputs.version}}/file/README.md)
[![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/recursive-readdir-files@${{steps.create_tag.outputs.versionNumber}}/file/README.md)
```bash
npm i recursive-readdir-files@${{steps.changelog.outputs.versionNumber}}
npm i recursive-readdir-files@${{steps.create_tag.outputs.versionNumber}}
```
${{ steps.changelog.outputs.compareurl }}
13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{
"name": "recursive-readdir-files",
"version": "1.0.3",
"version": "1.1.0",
"description": "Node.js module to list all files in a directory or any subdirectories.",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"watch": "npm run watch:ts",
"watch:ts": "tsbb watch & npm run build:types -- --watch",
"build": "npm run build:ts && npm run build:types",
"build:ts": "tsbb build",
"build:types": "tsbb types",
"watch": "tsbb watch --no-esm",
"build": "tsbb build --no-esm",
"test": "tsbb test",
"coverage": "tsbb test --coverage"
},
@@ -30,7 +27,7 @@
"license": "MIT",
"devDependencies": {
"@types/jest": "27.0.1",
"@types/node": "16.6.1",
"tsbb": "2.3.1"
"@types/node": "16.7.10",
"tsbb": "3.0.3"
}
}