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
- Host: GitHub
- URL: https://github.com/floscher/gulp4-symlinks
- Owner: floscher
- Created: 2016-03-18T21:29:27.000Z (over 10 years ago)
- Default Branch: v4.0.0-alpha.2
- Last Pushed: 2016-03-18T22:55:01.000Z (over 10 years ago)
- Last Synced: 2025-04-13T20:15:16.989Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://github.com/gulpjs/vinyl-fs/issues/132#issuecomment-198563453
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```