Skip to content

Commit

Permalink
Bump 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AxiosLeo committed Mar 16, 2023
1 parent d263cdc commit 129a232
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bin/cli-tool.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
'use strict';

const path = require('path');
const { App } = require('../main');
const { App } = require('..');

// init app
const app = new App({
name: 'cli-tool',
version: '1.5.0',
version: '1.5.1',
desc: 'application_desc',
commands_dir: path.join(__dirname, '../commands'),
commands_sort: ['help', 'init', 'make', 'exec'],
Expand Down
2 changes: 1 addition & 1 deletion commands/exec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const path = require('path');
const { Command, printer } = require('../main');
const { Command, printer } = require('..');
const { _exists } = require('../src/helper/fs');

class ExecCommand extends Command {
Expand Down
2 changes: 1 addition & 1 deletion commands/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const path = require('path');

const { Command, printer, debug, helper: { fs } } = require('../main');
const { Command, printer, debug, helper: { fs } } = require('..');
const { _write, _exists, _read } = fs;

class InitCommand extends Command {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axiosleo/cli-tool",
"version": "1.5.0",
"version": "1.5.1",
"description": "Design for quickly developing CLI applications using Node.js.",
"keywords": [
"cli",
Expand Down

0 comments on commit 129a232

Please sign in to comment.