Skip to content

Commit

Permalink
Merge pull request #98 from shoutem/hotfix/0.13.9
Browse files Browse the repository at this point in the history
Hotfix/0.13.9
  • Loading branch information
Definitely-Not-Vlad authored Nov 25, 2020
2 parents afed789 + d795b47 commit 62a9107
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shoutem/cli",
"version": "0.13.8",
"version": "0.13.9",
"description": "Command-line tools for Shoutem applications",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/shoutem.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node --no-deprecation
#!/usr/bin/env node

require('colors');
const path = require('path');
Expand Down
4 changes: 2 additions & 2 deletions src/user_messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export default {
push: {
complete: () => 'Success!'.green.bold,
missingRequiredFile: (missingFiles, extName) => missingFiles.length > 1
? `Canceling push, extension '${extName}' is missing the following files:\n ${missingFiles.join('\n ')}`
: `Canceling push, extension '${extName}' is missing '${missingFiles[0]}' file.`,
? `Canceling push, extension '${extName}' is missing the following files:\n ${missingFiles.join('\n ')}\nYou can ignore the buffer warning, it stems from dependencies.`
: `Canceling push, extension '${extName}' is missing '${missingFiles[0]}' file.\nYou can ignore the buffer warning, it stems from dependencies.`,
missingPackageJson: list => `Warning: directories ${list} couldn't be pushed due to missing package.json.`,
failureSuggestion: () => 'Warning: Check whether both server and app directory have a valid package.json file.',
uploadingInfo: (extJson, env) =>
Expand Down

0 comments on commit 62a9107

Please sign in to comment.