Skip to content

Commit 129a232

Browse files
committed
Bump 1.5.1
1 parent d263cdc commit 129a232

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

bin/cli-tool.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
'use strict';
44

55
const path = require('path');
6-
const { App } = require('../main');
6+
const { App } = require('..');
77

88
// init app
99
const app = new App({
1010
name: 'cli-tool',
11-
version: '1.5.0',
11+
version: '1.5.1',
1212
desc: 'application_desc',
1313
commands_dir: path.join(__dirname, '../commands'),
1414
commands_sort: ['help', 'init', 'make', 'exec'],

commands/exec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
const path = require('path');
4-
const { Command, printer } = require('../main');
4+
const { Command, printer } = require('..');
55
const { _exists } = require('../src/helper/fs');
66

77
class ExecCommand extends Command {

commands/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const path = require('path');
44

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

88
class InitCommand extends Command {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@axiosleo/cli-tool",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "Design for quickly developing CLI applications using Node.js.",
55
"keywords": [
66
"cli",

0 commit comments

Comments
 (0)