Delete the last batch files (for cordova).

Equivalent functionality re-implemented as "jake cordova".
This commit is contained in:
Jonathan Protzenko 2015-02-05 14:59:36 -08:00
Родитель fb428eb79a
Коммит 970af37cec
4 изменённых файлов: 15 добавлений и 34 удалений

Просмотреть файл

@ -305,13 +305,13 @@ task('run', [ 'default' ], { async: true }, function (port) {
});
task('local', [ 'default' ], { async: true }, function() {
jake.rmRf('tdserver.js')
jake.rmRf('tdserver.js');
jake.exec(
[ 'node build/shell.js TD_ALLOW_EDITOR=true TD_LOCAL_EDITOR_PATH=.' ],
{ printStdout: true, printStderr: true },
function() { complete(); }
)
})
);
});
task('update-docs', [ 'build/client.js', 'default' ], { async: true }, function() {
jake.exec(
@ -319,8 +319,8 @@ task('update-docs', [ 'build/client.js', 'default' ], { async: true }, function(
'node build/client.js updatelang' ],
{ printStdout: true, printStderr: true },
function() { complete(); }
)
})
);
});
task('nw', [ 'default' ], { async : true }, function() {
console.log('[I] building nw packages')
@ -346,7 +346,16 @@ task('nw', [ 'default' ], { async : true }, function() {
console.log('[I] nw packaged');
complete();
});
})
});
task('cordova', [ 'default' ], {}, function () {
// FIXME minify
jake.mkdirP('build/cordova/');
['www/index.html',
'build/browser.js',
'build/main.js',
'www/default.css',
'www/editor.css'].forEach(function (f) { jake.cpR(f, 'build/cordova/'); });
});
// vim: ft=javascript

Просмотреть файл

@ -1,4 +0,0 @@
..\External\AjaxMinifier.exe -line:,multiple,2 -inline:false -fnames:lock -kill:0x1000016000 -debug:false,TDev.Debug %* -out tmp.js
del %1
copy tmp.js %1
del tmp.js

Просмотреть файл

@ -1,12 +0,0 @@
setlocal
attrib -R cordovaeditor\www\index.html
attrib -R cordovaeditor\www\browser.js
attrib -R cordovaeditor\www\main.js
attrib -R cordovaeditor\www\css\default.css
attrib -R cordovaeditor\www\css\editor.css
copy /Y css\default.css cordovaeditor\www\css\default.css
copy /Y css\editor.css cordovaeditor\www\css\editor.css
copy /Y browser.js cordovaeditor\www\browser.js
copy /Y main.js cordovaeditor\www\main.js
copy /Y index.html cordovaeditor\www\index.html

Просмотреть файл

@ -1,12 +0,0 @@
@echo off
setlocal
call compile.bat
call minify.bat runtime.js
call minify.bat main.js
rem if %errorlevel% neq 0 exit /b %errorlevel%
rem call prepeditor.bat
rem if %errorlevel% neq 0 exit /b %errorlevel%
call prepapp.bat
rem if %errorlevel% neq 0 exit /b %errorlevel%
rem call compileapp.bat
rem if %errorlevel% neq 0 exit /b %errorlevel%