* chore: bump payload * test: add jest * chore: update eslint rules * feat: add email transport to plugin * ci: actions build and test * chore: bump typescript * chore: adjust top-level plugin options * test: clean up * feat: better env var handling, assertions * chore: update README * 1.1.0-beta.0 * chore: update package.json files * 1.1.0-beta.1 * chore: fix webpack recursion * 1.1.0-beta.2 * chore: bump payload * chore: email logging on success on error * 1.1.0-beta.3 * chore: use proper env var for default domain * 1.1.0-beta.4 * chore: log sendEmail error with better message * 1.1.0-beta.5 * chore: add comments to plugin options properties * 1.1.0-beta.6 * chore: bump payload peer dep * 1.1.0-beta.7 * chore: update README * chore: bump payload in dev dir * chore: package.json license * test: move test
18 lines
270 B
JavaScript
18 lines
270 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['./eslint-config'],
|
|
overrides: [
|
|
{
|
|
rules: {
|
|
'no-process-env': 'off',
|
|
},
|
|
},
|
|
{
|
|
files: ['dev/**/*.ts'],
|
|
rules: {
|
|
'import/no-relative-packages': 'off',
|
|
},
|
|
},
|
|
],
|
|
}
|