/start-gulp

Automate and enhance your workflow with gulp

Primary LanguageJavaScript

Automate and enhance your workflow - gulp

Build setup

Travis

  1. Install nodejs form Fly to Download.

    By the way , to check you already installed nodejs or not; type in CMD

     node -v
  2. Open Command Prompt(not Admin) , then install gulp-cli gloable

    npm install -g gulp-cli
  3. Go to your project folder , open CMD in the current folder then install gulp development dependencies.

    // install both the dependencies and devDependencies
    npm install
    
    // install only devdependencies
    npm install --only=dev
  4. Waiting for all installed

  5. Run build command

    npm t
    
    or use
    
    gulp
  6. Congratulation