Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • G gulp
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 24
    • Issues 24
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 3
    • Merge requests 3
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • gulp
  • gulp
  • Issues
  • #999
Closed
Open
Issue created Apr 02, 2015 by Administrator@rootContributor

(gulp.watch): Issue with new opt-in symlink

Created by: vikrantpogula

I think the new opt-in symlink is not usable with gulp.watch. Other tasks seem fine after adding {follow: true}, but gulp watch doesn't trigger its task when I provide {follow: true}. I have illustrated my gulpfile below

Currently doesn't trigger the task 'refresh:scripts'

var watcher = gulp.watch([
  _settings.APP_PATH+'/**/*.js',
  _settings.APP_PATH+'/**/*.jsx',
], {follow:true}, 'refresh:scripts')

Raises Error now, but used to work fine (would watch and trigger 'refresh:scripts')

var watcher = gulp.watch([
  _settings.APP_PATH+'/**/*.js',
  _settings.APP_PATH+'/**/*.jsx',
], 'refresh:scripts')

TypeError: Arguments to path.resolve must be strings

This used to work fine with 4.0 before the opt-in symlink following for blobs.

Assignee
Assign to
Time tracking