%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.41 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/root/var/www/html/ppaobm/vendor/bower-asset/moment/tasks/ |
Upload File : |
module.exports = function (grunt) { // To set up on mac: // * brew install nuget # this fetches mono // * go to nuget.org, login, click on username (top right), copy api-key // from the bottom // * grunt nugetkey --key=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX // * grunt nuget-publish // // // If this fails you might need to follow: // // http://stackoverflow.com/questions/15181888/nuget-on-linux-error-getting-response-stream // // $ sudo mozroots --import --machine --sync // $ sudo certmgr -ssl -m https://go.microsoft.com // $ sudo certmgr -ssl -m https://nugetgallery.blob.core.windows.net // $ sudo certmgr -ssl -m https://nuget.org grunt.config('nugetpack', { dist: { src: 'Moment.js.nuspec', dest: './' } }); grunt.registerTask('nugetkey_pre', function () { grunt.option('key', process.env.NUGET_KEY); grunt.option('source', 'https://www.nuget.org/api/v2/package'); }); grunt.registerTask('nugetkey_post', function () { grunt.option('key', null); grunt.option('source', null); }); grunt.config('nugetpush', { dist: { src: 'Moment.js.*.nupkg' } }); grunt.config('clean.nuget', { src: 'Moment.js.*.nupkg' }); grunt.registerTask('nuget-publish', [ 'nugetpack', 'nugetkey_pre', 'nugetkey', 'nugetkey_post', 'nugetpush', 'clean:nuget' ]); };