Skip to content

Commit

Permalink
v6.1.0 - boundation, changelog, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Nov 1, 2023
1 parent ea12243 commit fe6fb45
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 227 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/bevry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,11 @@ jobs:
- macos-latest
- windows-latest
node:
- '10'
- '12'
- '14'
- '16'
- '18'
- '20'
- '21'
runs-on: ${{ matrix.os }}
continue-on-error: >-
${{ contains('10 12 14 16', matrix.node) || contains('macos-latest
windows-latest', matrix.os) }}
continue-on-error: ${{ contains('macos-latest windows-latest', matrix.os) }}
steps:
- uses: actions/checkout@v2
- name: Install desired Node.js version
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# History

## v6.1.0 2023 November 1

- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
- Removes leftover `coffeescript` and `coffeelint` dev dependencies

## v6.0.0 2023 November 1

- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,23 +57,23 @@ getMembersFromOrgs(['bevry']).then(console.log).catch(console.error)

``` html
<script type="module">
import * as pkg from '//cdn.skypack.dev/@bevry/github-members@^6.0.0'
import * as pkg from '//cdn.skypack.dev/@bevry/github-members@^6.1.0'
</script>
```

<a href="https://unpkg.com" title="unpkg is a fast, global content delivery network for everything on npm"><h3>unpkg</h3></a>

``` html
<script type="module">
import * as pkg from '//unpkg.com/@bevry/github-members@^6.0.0'
import * as pkg from '//unpkg.com/@bevry/github-members@^6.1.0'
</script>
```

<a href="https://jspm.io" title="Native ES Modules CDN"><h3>jspm</h3></a>

``` html
<script type="module">
import * as pkg from '//dev.jspm.io/@bevry/github-members@6.0.0'
import * as pkg from '//dev.jspm.io/@bevry/github-members@6.1.0'
</script>
```

Expand Down
114 changes: 0 additions & 114 deletions coffeelint.json

This file was deleted.

109 changes: 12 additions & 97 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"title": "GitHub Members",
"name": "@bevry/github-members",
"version": "6.0.0",
"version": "6.1.0",
"description": "Fetch all the members of all the specified github organizations with their complete details",
"homepage": "https://github.com/bevry/github-members",
"license": "Artistic-2.0",
"keywords": [
"browser",
"coffeescript",
"es2022",
"es2023",
"github",
Expand Down Expand Up @@ -162,8 +161,6 @@
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"assert-helpers": "^8.4.0",
"coffeelint": "^2.1.0",
"coffeescript": "^2.7.0",
"eslint": "^8.52.0",
"eslint-config-bevry": "^3.28.0",
"eslint-config-prettier": "^9.0.0",
Expand Down Expand Up @@ -201,8 +198,7 @@
"our:setup": "npm run our:setup:install",
"our:setup:install": "npm install",
"our:test": "npm run our:verify && npm test",
"our:verify": "npm run our:verify:coffeelint && npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:module && npm run our:verify:prettier",
"our:verify:coffeelint": "coffeelint ./source",
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:module && npm run our:verify:prettier",
"our:verify:directory": "valid-directory",
"our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source",
"our:verify:module": "valid-module",
Expand Down

0 comments on commit fe6fb45

Please sign in to comment.