generated from haraka/haraka-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- chore: populate [files] in package.json. Delete .npmignore. - chore: automated code formatting - ci: updated to shared configs - dep: eslint-plugin-haraka -> @haraka/eslint-config - doc: added CONTRIBUTORS.md - doc: consistent naming of "special" files like CHANGELOG.md.
- Loading branch information
Showing
16 changed files
with
370 additions
and
391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
engines: | ||
eslint: | ||
enabled: true | ||
channel: "eslint-8" | ||
channel: 'eslint-8' | ||
config: | ||
config: ".eslintrc.yaml" | ||
config: '.eslintrc.yaml' | ||
|
||
ratings: | ||
paths: | ||
- "**.js" | ||
paths: | ||
- '**.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,22 @@ | ||
name: CI | ||
|
||
on: [ push ] | ||
on: [push] | ||
|
||
env: | ||
CI: true | ||
|
||
jobs: | ||
|
||
lint: | ||
uses: haraka/.github/.github/workflows/lint.yml@master | ||
|
||
coverage: | ||
uses: haraka/.github/.github/workflows/coverage.yml@master | ||
secrets: inherit | ||
|
||
test: | ||
needs: [ lint, get-lts ] | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, windows-latest ] | ||
node-version: ${{ fromJson(needs.get-lts.outputs.active) }} | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
name: Node ${{ matrix.node-version }} on ${{ matrix.os }} | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm install | ||
- run: npm test | ||
ubuntu: | ||
needs: [lint] | ||
uses: haraka/.github/.github/workflows/ubuntu.yml@master | ||
|
||
get-lts: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- id: get | ||
uses: msimerson/node-lts-versions@v1 | ||
outputs: | ||
active: ${{ steps.get.outputs.active }} | ||
lts: ${{ steps.get.outputs.lts }} | ||
windows: | ||
needs: [lint] | ||
uses: haraka/.github/.github/workflows/windows.yml@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,4 @@ env: | |
jobs: | ||
publish: | ||
uses: haraka/.github/.github/workflows/publish.yml@master | ||
secrets: inherit | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
singleQuote: true | ||
semi: false |
Submodule .release
updated
10 files
+2 −0 | .prettierrc.yaml | |
+1 −0 | .shellcheckrc | |
+20 −0 | CHANGELOG.md | |
+18 −10 | README.md | |
+38 −1 | base.sh | |
+82 −0 | contributors.js | |
+14 −3 | finish.sh | |
+1 −1 | npm/prepend-scope.cjs | |
+141 −25 | start.sh | |
+39 −8 | submit.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
|
||
### Unreleased | ||
|
||
### [1.2.2] - 2024-08-05 | ||
|
||
- chore: populate [files] in package.json. Delete .npmignore. | ||
- chore: automated code formatting | ||
- ci: updated to shared configs | ||
- dep: eslint-plugin-haraka -> @haraka/eslint-config | ||
- doc: added CONTRIBUTORS.md | ||
- doc: consistent naming of "special" files like CHANGELOG.md. | ||
|
||
### [1.2.1] - 2024-04-03 | ||
|
||
- es6: use optional chaining (?.), for safety | ||
- es6: use default function params | ||
|
||
|
||
### [1.2.0] - 2022-06-24 | ||
|
||
- merged in ChunkEmitter, only used here | ||
- copied in indexOfLF, removed haraka-utils dependency | ||
|
||
|
||
### [1.1.0] - 2022-06-23 | ||
|
||
- fix: boundary marker corruption issue haraka/Haraka#3068 | ||
|
||
|
||
## 1.0.0 - 2022-06-23 | ||
|
||
- Import from Haraka | ||
- convert tests to mocha | ||
|
||
|
||
[1.1.0]: https://github.com/haraka/message-stream/releases/tag/1.1.0 | ||
[1.2.0]: https://github.com/haraka/message-stream/releases/tag/1.2.0 | ||
[1.2.1]: https://github.com/haraka/message-stream/releases/tag/1.2.1 | ||
[1.2.2]: https://github.com/haraka/message-stream/releases/tag/1.2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Contributors | ||
|
||
This handcrafted artisinal software is brought to you by: | ||
|
||
| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/message-stream/commits?author=msimerson">5</a>) | | ||
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | | ||
|
||
<sub>this file is maintained by [.release](https://github.com/msimerson/.release)</sub> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.