Skip to content

Commit

Permalink
print mappsrc folder on init (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregra81 authored Jan 14, 2024
1 parent c796e4a commit d84fdbd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mondaycom/apps-cli",
"version": "2.2.2",
"version": "2.2.3",
"description": "A cli tool to manage apps (and monday-code projects) in monday.com",
"author": "monday.com Apps Team",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/init/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default class Init extends BaseCommand {
}

ConfigService.init(args, this.config.configDir, { override: true, setInProcessEnv: true });
logger.info(`'${CONFIG_NAME}' created`);
logger.info(`'${CONFIG_NAME}' created inside '${this.config.configDir}'`);
} catch (error) {
logger.debug(error, this.DEBUG_TAG);
logger.error(`'${CONFIG_NAME}' failed to initialize`);
Expand Down
2 changes: 1 addition & 1 deletion src/services/config-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const ConfigService = {

return data;
} catch (error) {
logger.debug('An error has occurred while creating mapps config file', (error as Error).message);
logger.debug('An error has occurred while creating .mappsrc config file', (error as Error).message);
}
},
};

0 comments on commit d84fdbd

Please sign in to comment.