We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1549fa8 commit 5cd557eCopy full SHA for 5cd557e
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "pri",
3
- "version": "4.3.7",
+ "version": "4.3.8",
4
"types": "src/node/index.ts",
5
"main": "built/node/index.js",
6
"scripts": {
src/built-in-plugins/command-publish/plugin/run-publish.ts
@@ -49,8 +49,8 @@ export const publish = async (options: PublishOption) => {
49
if (depMonoPackages.length > 0) {
50
let includeAllPrompt = { includeAll: false };
51
52
- if (options.includeAll) {
53
- includeAllPrompt = { includeAll: true };
+ if (_.has(options, 'includeAll')) {
+ includeAllPrompt = { includeAll: options.includeAll };
54
} else {
55
includeAllPrompt = await inquirer.prompt([
56
0 commit comments