install gulp to process code
This commit is contained in:
parent
24f6606c2c
commit
b6a3900ee2
1651 changed files with 253427 additions and 39 deletions
47
node_modules/vinyl-fs/lib/dest/options.js
generated
vendored
Normal file
47
node_modules/vinyl-fs/lib/dest/options.js
generated
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
'use strict';
|
||||
|
||||
var DEFAULT_ENCODING = require('../constants').DEFAULT_ENCODING;
|
||||
|
||||
var config = {
|
||||
cwd: {
|
||||
type: 'string',
|
||||
default: process.cwd,
|
||||
},
|
||||
mode: {
|
||||
type: 'number',
|
||||
default: function (file) {
|
||||
return file.stat ? file.stat.mode : null;
|
||||
},
|
||||
},
|
||||
dirMode: {
|
||||
type: 'number',
|
||||
},
|
||||
overwrite: {
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
},
|
||||
append: {
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
},
|
||||
encoding: {
|
||||
type: ['string', 'boolean'],
|
||||
default: DEFAULT_ENCODING,
|
||||
},
|
||||
sourcemaps: {
|
||||
type: ['string', 'boolean'],
|
||||
default: false,
|
||||
},
|
||||
// Symlink options
|
||||
relativeSymlinks: {
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
},
|
||||
// This option is ignored on non-Windows platforms
|
||||
useJunctions: {
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = config;
|
||||
Loading…
Add table
Add a link
Reference in a new issue