ShutUpILoveYou
ShutUpILoveYou

Reputation: 446

No gulpfile found error But i installed gulp clearly

I'm trying to install 'gulp' by using npm and then There is an error.

C:\Users\SAMSUNG\myapp2>gulp
[13:22:54] No gulpfile found

I installed gulp clearly as this statement

C:\Users\SAMSUNG\myapp2>npm install global gulp
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
[email protected] C:\Users\SAMSUNG\myapp2
+-- [email protected]
`-- [email protected]

I updated graceful-fs version of course. And there is gulp in my diretory C:\Users\SAMSUNG\myapp2\node_modules.bin. And also run this statement

npm install{....}
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules\chokidar\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

Why dose it occurred 'no found gulpflie'???

Upvotes: 1

Views: 4920

Answers (1)

AJ Funk
AJ Funk

Reputation: 3187

Like the error says, there is no gulpfile. You need a gulpfile.

Here is an example of one https://github.com/google/web-starter-kit/blob/master/gulpfile.babel.js

Upvotes: 1

Related Questions