2016-05-28 130 views
1

我刪除了node modules文件夾,並使用npm install命令安裝了npm。我的gulpfile.js也是完美的,因爲其他人正在使用這個配置完美,即使我從我的另一臺機器做了這個配置。但是,當我嘗試從當前機器運行npm run gulp時,它會顯示以下錯誤。`npm run gulp`找不到模塊'gulp-shell'?

Fahads-MacBook-Pro:dark-web jim$ npm run gulp 

> [email protected] gulp /Users/jim/Documents/JETAPORT/dark-web 
> gulp 

module.js:327 
    throw err; 
    ^

Error: Cannot find module 'gulp-shell' 
    at Function.Module._resolveFilename (module.js:325:15) 
    at Function.Module._load (module.js:276:25) 
    at Module.require (module.js:353:17) 
    at require (internal/module.js:12:17) 
    at Object.<anonymous> (/Users/jim/Documents/JETAPORT/dark-web/gulpfile.js:6:13) 
    at Module._compile (module.js:409:26) 
    at Object.Module._extensions..js (module.js:416:10) 
    at Module.load (module.js:343:32) 
    at Function.Module._load (module.js:300:12) 
    at Module.require (module.js:353:17) 

npm ERR! Darwin 14.5.0 
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "run" "gulp" 
npm ERR! node v4.4.2 
npm ERR! npm v2.15.0 
npm ERR! code ELIFECYCLE 
npm ERR! [email protected] gulp: `gulp` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] gulp script 'gulp'. 
npm ERR! This is most likely a problem with the jetaport package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  gulp 
npm ERR! You can get information on how to open an issue for this project with: 
npm ERR!  npm bugs jetaport 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR! 
npm ERR!  npm owner ls jetaport 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR!  /Users/jim/Documents/JETAPORT/dark-web/npm-debug.log 

這裏是package.json文件

{ 
    "name": "jetaport", 
    "version": "1.0.0", 
    "description": "The Jetaport Gulp dependencies.", 
    "main": "index.js", 
    "author": "Alexander Khost", 
    "repository": { 
    "type": "git", 
    "url": "git://github.com/akhost/Jetaport.git" 
    }, 
    "license": "ISC", 
    "dependencies": { 
    "autoprefixer": "^6.3.1", 
    "babel-preset-es2015": "^6.3.13", 
    "babel-preset-react": "^6.3.13", 
    "bower": "^1.7.2", 
    "gulp": "^3.9.0", 
    "gulp-autoprefixer": "^3.1.0", 
    "gulp-cssnano": "^2.0.0", 
    "gulp-imagemin": "^2.4.0", 
    "gulp-postcss": "^6.0.1", 
    "imagemin-pngquant": "^4.2.0", 
    "laravel-elixir": "^5.0.0", 
    "pixrem": "^3.0.0", 
    "postcss-conditionals": "^2.0.0", 
    "postcss-each": "^0.9.1", 
    "postcss-import": "^7.1.3", 
    "postcss-math": "0.0.1", 
    "postcss-mixins": "^4.0.1", 
    "postcss-nested": "^1.0.0", 
    "postcss-reporter": "^1.3.0", 
    "postcss-scss": "^0.1.3", 
    "postcss-simple-extend": "^1.0.0", 
    "postcss-simple-vars": "^1.1.0", 
    "precss": "^1.3.0", 
    "yargs": "^4.4.0" 
    }, 
    "bugs": { 
    "url": "https://github.com/akhost/Jetaport/issues" 
    }, 
    "homepage": "https://github.com/akhost/Jetaport#readme", 
    "directories": { 
    "test": "tests" 
    }, 
    "devDependencnpm ies": { 
    "gulp-notify": "^2.2.0" 
    }, 
    "scripts": { 
    "gulp": "gulp", 
    "bower": "bower" 
    }, 
    "devDependencies": { 
    "gulp": "^3.9.1" 
    } 
} 
+1

發佈您的package.json –

+0

@MarkoGrešak我補充說。請看一看。 –

回答

2

package.json缺少gulp-shell包。您必須安裝npm install --save gulp-shell(或--save-dev,如果您想將其置於devDependencies之下)。不知道其他人是如何工作的,但是我非常有信心他們已經自己安裝了它,類似於我的建議,沒有保存標誌,這就是它在package.json中缺失的原因。

+0

太棒了。 'gulp-shell'丟失了。我已經安裝了'npm install --save-dev gulp-shell'。背後的原因是我忘了從上游取下最新的軟件包更新。謝啦! –