-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #587 from tschaub/dependabot/npm_and_yarn/eslint-c…
…onfig-tschaub-15.1.0 Bump eslint-config-tschaub from 14.1.2 to 15.1.0
- Loading branch information
Showing
22 changed files
with
1,649 additions
and
761 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 |
---|---|---|
|
@@ -22,9 +22,9 @@ jobs: | |
os: | ||
- ubuntu-latest | ||
node: | ||
- 16 | ||
- 18 | ||
- 20 | ||
- 22 | ||
|
||
steps: | ||
- name: Clone repository | ||
|
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 @@ | ||
#!/usr/bin/env node | ||
|
||
const ghpages = require('../lib/index.js'); | ||
const {Command} = require('commander'); | ||
const path = require('path'); | ||
const pkg = require('../package.json'); | ||
const {Command} = require('commander'); | ||
const addr = require('email-addresses'); | ||
const ghpages = require('../lib/index.js'); | ||
const pkg = require('../package.json'); | ||
|
||
function publish(dist, config) { | ||
return new Promise((resolve, reject) => { | ||
|
@@ -24,63 +24,63 @@ function main(args) { | |
.version(pkg.version) | ||
.requiredOption( | ||
'-d, --dist <dist>', | ||
'Base directory for all source files' | ||
'Base directory for all source files', | ||
) | ||
.option( | ||
'-s, --src <src>', | ||
'Pattern used to select which files to publish', | ||
ghpages.defaults.src | ||
ghpages.defaults.src, | ||
) | ||
.option( | ||
'-b, --branch <branch>', | ||
'Name of the branch you are pushing to', | ||
ghpages.defaults.branch | ||
ghpages.defaults.branch, | ||
) | ||
.option( | ||
'-e, --dest <dest>', | ||
'Target directory within the destination branch (relative to the root)', | ||
ghpages.defaults.dest | ||
ghpages.defaults.dest, | ||
) | ||
.option('-a, --add', 'Only add, and never remove existing files') | ||
.option('-x, --silent', 'Do not output the repository url') | ||
.option( | ||
'-m, --message <message>', | ||
'commit message', | ||
ghpages.defaults.message | ||
ghpages.defaults.message, | ||
) | ||
.option('-g, --tag <tag>', 'add tag to commit') | ||
.option('--git <git>', 'Path to git executable', ghpages.defaults.git) | ||
.option('-t, --dotfiles', 'Include dotfiles') | ||
.option('--nojekyll', 'Add a .nojekyll file to disable Jekyll') | ||
.option( | ||
'--cname <CNAME>', | ||
'Add a CNAME file with the name of your custom domain' | ||
'Add a CNAME file with the name of your custom domain', | ||
) | ||
.option('-r, --repo <repo>', 'URL of the repository you are pushing to') | ||
.option('-p, --depth <depth>', 'depth for clone', ghpages.defaults.depth) | ||
.option( | ||
'-o, --remote <name>', | ||
'The name of the remote', | ||
ghpages.defaults.remote | ||
ghpages.defaults.remote, | ||
) | ||
.option( | ||
'-u, --user <address>', | ||
'The name and email of the user (defaults to the git config). Format is "Your Name <[email protected]>".' | ||
'The name and email of the user (defaults to the git config). Format is "Your Name <[email protected]>".', | ||
) | ||
.option( | ||
'-v, --remove <pattern>', | ||
'Remove files that match the given pattern ' + | ||
'(ignored if used together with --add).', | ||
ghpages.defaults.remove | ||
ghpages.defaults.remove, | ||
) | ||
.option('-n, --no-push', 'Commit only (with no push)') | ||
.option( | ||
'-f, --no-history', | ||
'Push force new commit without parent history' | ||
'Push force new commit without parent history', | ||
) | ||
.option( | ||
'--before-add <file>', | ||
'Execute the function exported by <file> before "git add"' | ||
'Execute the function exported by <file> before "git add"', | ||
) | ||
.parse(args); | ||
|
||
|
@@ -92,16 +92,18 @@ function main(args) { | |
if (!parts) { | ||
throw new Error( | ||
`Could not parse name and email from user option "${options.user}" ` + | ||
'(format should be "Your Name <[email protected]>")' | ||
'(format should be "Your Name <[email protected]>")', | ||
); | ||
} | ||
user = {name: parts.name, email: parts.address}; | ||
} | ||
let beforeAdd; | ||
if (options.beforeAdd) { | ||
const m = require(require.resolve(options.beforeAdd, { | ||
paths: [process.cwd()], | ||
})); | ||
const m = require( | ||
require.resolve(options.beforeAdd, { | ||
paths: [process.cwd()], | ||
}), | ||
); | ||
|
||
if (typeof m === 'function') { | ||
beforeAdd = m; | ||
|
@@ -110,7 +112,7 @@ function main(args) { | |
} else { | ||
throw new Error( | ||
`Could not find function to execute before adding files in ` + | ||
`"${options.beforeAdd}".\n ` | ||
`"${options.beforeAdd}".\n `, | ||
); | ||
} | ||
} | ||
|
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,3 @@ | ||
import configs from 'eslint-config-tschaub'; | ||
|
||
export default [...configs]; |
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
Oops, something went wrong.