-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- vm_harness: access local files in plugin directory (#68) - dep(all): bump versions - dep(eslint): upgrade to v9
- Loading branch information
Showing
11 changed files
with
62 additions
and
38 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
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 |
---|---|---|
|
@@ -4,6 +4,8 @@ on: | |
push: | ||
branches: | ||
- master | ||
paths: | ||
- package.json | ||
|
||
env: | ||
CI: true | ||
|
This file was deleted.
Oops, something went wrong.
Submodule .release
updated
7 files
+4 −0 | CHANGELOG.md | |
+9 −0 | README.md | |
+0 −82 | contributors.js | |
+1 −0 | contributors.js | |
+85 −0 | js/contributors.cjs | |
+62 −0 | js/standards.cjs | |
+1 −1 | npm/prepend-scope.cjs | |
+40 −2 | start.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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import globals from 'globals' | ||
import path from 'node:path' | ||
import { fileURLToPath } from 'node:url' | ||
import js from '@eslint/js' | ||
import { FlatCompat } from '@eslint/eslintrc' | ||
|
||
const __filename = fileURLToPath(import.meta.url) | ||
const __dirname = path.dirname(__filename) | ||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all, | ||
}) | ||
|
||
export default [ | ||
...compat.extends('@haraka'), | ||
{ | ||
languageOptions: { | ||
globals: { | ||
...globals.node, | ||
...globals.mocha, | ||
}, | ||
}, | ||
|
||
rules: { | ||
'no-unused-vars': ['warn'], | ||
}, | ||
}, | ||
] |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"name": "haraka-test-fixtures", | ||
"license": "MIT", | ||
"description": "Haraka Test Fixtures", | ||
"version": "1.3.8", | ||
"version": "1.3.9", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:haraka/test-fixtures.git" | ||
|
@@ -18,28 +18,32 @@ | |
"node": ">=12" | ||
}, | ||
"dependencies": { | ||
"address-rfc2821": "^2.1.2", | ||
"haraka-config": "^1.4.0", | ||
"address-rfc2821": "^2.1.3", | ||
"haraka-config": "^1.4.2", | ||
"haraka-constants": "^1.0.7", | ||
"haraka-email-message": "^1.2.4", | ||
"haraka-notes": "^1.1.0", | ||
"haraka-results": "^2.2.4", | ||
"haraka-email-message": "^1.2.5", | ||
"haraka-notes": "^1.1.1", | ||
"haraka-results": "^2.2.5", | ||
"haraka-utils": "^1.1.3" | ||
}, | ||
"devDependencies": { | ||
"@haraka/eslint-config": "^1.1.5" | ||
"@haraka/eslint-config": "^2.0.2" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/haraka/test-fixtures/issues" | ||
}, | ||
"scripts": { | ||
"format": "npm run prettier:fix && npm run lint:fix", | ||
"lint": "npx eslint@^8 *.js lib test", | ||
"lint:fix": "npx eslint@^8 *.js lib test --fix", | ||
"lint": "npx eslint@^9 *.js lib test", | ||
"lint:fix": "npx eslint@^9 *.js lib test --fix", | ||
"prettier": "npx prettier . --check", | ||
"prettier:fix": "npx prettier . --write --log-level=warn", | ||
"test": "npx mocha@^10", | ||
"test": "npx mocha@^11", | ||
"versions": "npx dependency-version-checker check", | ||
"versions:fix": "npx dependency-version-checker update" | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"semi": false | ||
} | ||
} |