An open API service indexing awesome lists of open source software.

https://github.com/floscher/gulp4-symlinks

Demo for an issue in Gulp 4 with symbolic links
https://github.com/floscher/gulp4-symlinks

Last synced: 10 months ago
JSON representation

Demo for an issue in Gulp 4 with symbolic links

Awesome Lists containing this project

README

          

# Demo for different handling of symlinks in Gulp3 and Gulp4

These are the source files:
```
|-- src
| |-- foo
| |-- baz > ../../vendor/bar
|-- vendor
|-- bar
```

See the [Gulpfile](gulpfile.js) for the simple Gulp task that copies the directory `./src/` to the directory `./dest/`

With Gulp 4.0.0-alpha.2 the directory structure in `./dest/` is as follows:
```
|-- dest
|-- foo
|-- bar
```
(`foo` is an empty directory and `bar` is a copy of `vendor/bar`)

## Instructions
Try it out with
```shell
npm install
npm run build
```