fix omi-cli bug

This commit is contained in:
dntzhang 2017-04-10 16:51:07 +08:00
parent 000cf48e6d
commit ceed3e1cad
3 changed files with 4 additions and 2 deletions

View File

@ -65,7 +65,7 @@ function initPr(args) {
console.log(error(err));
}
}
info('Install', 'npm will install dependencies');
//info('Install', 'npm will install dependencies');
console.log();
require('./install')(mirror, done)
} catch(e){

View File

@ -45,6 +45,7 @@ var config = {
},
resolve: {
modules: [
path.join(__dirname, '..','..', 'node_modules'),
path.join(__dirname, '..', 'node_modules'),
'node_modules',
path.join(__dirname, 'node_modules')
@ -52,6 +53,7 @@ var config = {
},
resolveLoader: {
modules: [
path.join(__dirname, '..','..', 'node_modules'),
path.join(__dirname, '..', 'node_modules'),
'node_modules',
path.join(__dirname, 'node_modules')

View File

@ -1,6 +1,6 @@
{
"name": "omi-cli",
"version": "0.2.8",
"version": "0.2.9",
"description": "CLI for scaffolding Omi.js projects.",
"main": "bin/omi",
"engines": {