Skip to content
This repository was archived by the owner on Jun 10, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/nodes/Source.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { basename, relative, resolve } from 'path';
import { link, linkSync, mkdirSync, statSync, Promise } from 'sander';
import { symlinkOrCopy, symlinkOrCopySync, mkdirSync, statSync, Promise } from 'sander';
import { watch } from 'graceful-chokidar';
import * as debounce from 'debounce';
import Node from './Node';
Expand Down Expand Up @@ -64,7 +64,7 @@ export default class Source extends Node {

// make sure the file is in the appropriate target directory to start
if ( this.file ) {
linkSync( this.file ).to( this.targetFile );
symlinkOrCopySync( this.file ).to( this.targetFile );
}

let changes = [];
Expand Down Expand Up @@ -105,7 +105,7 @@ export default class Source extends Node {
this._fileWatcher = watch( this.file, options );

this._fileWatcher.on( 'change', () => {
link( this.file ).to( this.targetFile );
symlinkOrCopy( this.file ).to( this.targetFile );
});
}
}
Expand Down