1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 05:43:52 +03:00

chore: improve publish tag description

This commit is contained in:
Sérgio Ramos 2017-05-26 10:34:38 +01:00
parent 8974a0546f
commit 802dff3e42

View File

@ -1,5 +1,6 @@
#!/usr/bin/env node
const { EOL } = require('os');
const pkg = require('../package.json');
const { writeFile } = require('mz/fs');
const execa = require('execa');
@ -136,7 +137,7 @@ const tasks = new Listr(
'-a',
`${pkg.name}@${pkg.version}`,
'-m',
msg
`${EOL}${pkg.name}@${pkg.version}${EOL}${msg}`
]);
}
},