use directories for structure
This commit is contained in:
26
node_modules/vinyl-fs/lib/symlink/options.js
generated
vendored
Normal file
26
node_modules/vinyl-fs/lib/symlink/options.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
'use strict';
|
||||
|
||||
var config = {
|
||||
cwd: {
|
||||
type: 'string',
|
||||
default: process.cwd,
|
||||
},
|
||||
dirMode: {
|
||||
type: 'number',
|
||||
},
|
||||
overwrite: {
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
},
|
||||
relativeSymlinks: {
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
},
|
||||
// This option is ignored on non-Windows platforms
|
||||
useJunctions: {
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = config;
|
Reference in New Issue
Block a user