forked from olcxjas-softworks/LarpixClient
Add capacitorjs runtime
This commit is contained in:
parent
d0ece489ee
commit
f90c0e6c40
8362 changed files with 1502407 additions and 1 deletions
19
node_modules/git-raw-commits/cli.js
generated
vendored
Executable file
19
node_modules/git-raw-commits/cli.js
generated
vendored
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/env node
|
||||
'use strict'
|
||||
const meow = require('meow')
|
||||
const gitRawCommits = require('./')
|
||||
|
||||
const cli = meow(`
|
||||
Usage
|
||||
git-raw-commits [<git-log(1)-options>]
|
||||
|
||||
Example
|
||||
git-raw-commits --from HEAD~2 --to HEAD^`
|
||||
)
|
||||
|
||||
gitRawCommits(cli.flags)
|
||||
.on('error', function (err) {
|
||||
process.stderr.write(err)
|
||||
process.exit(1)
|
||||
})
|
||||
.pipe(process.stdout)
|
||||
Loading…
Add table
Add a link
Reference in a new issue