mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-03-11 17:45:30 +00:00
[BUILD] Make sure PR folder is created
This commit is contained in:
parent
6ea04de7b4
commit
51285bfb16
2 changed files with 2 additions and 0 deletions
|
|
@ -86,6 +86,7 @@ async function buildBinary(buildType: BuildTypes, gui: boolean) {
|
|||
fs.mkdirSync(`${buildDir}/config`);
|
||||
fs.mkdirSync(`${buildDir}/videos`);
|
||||
fs.mkdirSync(`${buildDir}/widevine`);
|
||||
fs.mkdirSync(`${buildDir}/playready`);
|
||||
fs.copySync('./config/bin-path.yml', `${buildDir}/config/bin-path.yml`);
|
||||
fs.copySync('./config/cli-defaults.yml', `${buildDir}/config/cli-defaults.yml`);
|
||||
fs.copySync('./config/dir-path.yml', `${buildDir}/config/dir-path.yml`);
|
||||
|
|
|
|||
1
tsc.ts
1
tsc.ts
|
|
@ -42,6 +42,7 @@ const ignore = [
|
|||
'./dev.js$',
|
||||
'*/node_modules/*',
|
||||
'./widevine/*',
|
||||
'./playready/*',
|
||||
'./videos/*',
|
||||
'./logs/*',
|
||||
].map(a => a.replace(/\*/g, '[^]*').replace(/\.\//g, escapeRegExp(__dirname) + '/').replace(/\//g, path.sep === '\\' ? '\\\\' : '/')).map(a => new RegExp(a, 'i'));
|
||||
|
|
|
|||
Loading…
Reference in a new issue