mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-15 03:01:37 -05:00
parent
89ef60fdba
commit
68741a1106
1 changed files with 3 additions and 3 deletions
|
@ -280,7 +280,7 @@ var overrides = require('./core/server/overrides'),
|
|||
},
|
||||
expand: true,
|
||||
cwd: '<%= paths.releaseBuild %>/',
|
||||
src: ['**', '.knex-migrator']
|
||||
src: ['**']
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -719,9 +719,9 @@ var overrides = require('./core/server/overrides'),
|
|||
// A list of files and patterns to include when creating a release zip.
|
||||
// This is read from the `.npmignore` file and all patterns are inverted as the `.npmignore`
|
||||
// file defines what to ignore, whereas we want to define what to include.
|
||||
src: ['.knex-migrator'].concat(fs.readFileSync('.npmignore', 'utf8').split('\n').filter(Boolean).map(function (pattern) {
|
||||
src: fs.readFileSync('.npmignore', 'utf8').split('\n').filter(Boolean).map(function (pattern) {
|
||||
return pattern[0] === '!' ? pattern.substr(1) : '!' + pattern;
|
||||
})),
|
||||
}),
|
||||
dest: '<%= paths.releaseBuild %>/'
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue