Skip to content
This repository has been archived by the owner on Nov 20, 2019. It is now read-only.

Commit

Permalink
major(cli): make --ci flag "true" by default
Browse files Browse the repository at this point in the history
so you don't need to pass it anymore; pass --no-ci to run it locally without throwing

Signed-off-by: Charlike Mike Reagent <[email protected]>
  • Loading branch information
Charlike Mike Reagent committed Feb 12, 2018
1 parent 3c54039 commit e93dbc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { prepublish, publish } = require('./index.js')
const argv = minimist(process.argv.slice(2), {
default: {
cwd: process.cwd(),
ci: false,
ci: true,
},
})

Expand Down

0 comments on commit e93dbc6

Please sign in to comment.