Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove SKIP_BABEL = true since that's now the default in the PDF.js repository #26

Merged
merged 1 commit into from
Feb 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions on_cmd_fonttest.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ cp('-f', __dirname+'/test-files/browser_manifest.json', './test/resources/browse
echo();
echo('>> Font Tests');

process.env['SKIP_BABEL'] = 'true'; // Disable Babel translation.

exec('gulp fonttest', {silent:false, async:true}, function(error, output) {
var successMatch = output.match(/All font tests passed/g);

Expand Down
2 changes: 0 additions & 2 deletions on_cmd_makeref.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ exec('gulp lint', {silent:false, async:true}, function(error, output) {
echo();
echo('>> Making references');

process.env['SKIP_BABEL'] = 'true'; // Disable Babel translation.

// Using {async} to avoid unnecessary CPU usage
exec('gulp botmakeref', {silent:false, async:true}, function(error, output) {
var successMatch = output.match(/All regression tests passed/g);
Expand Down
3 changes: 2 additions & 1 deletion on_cmd_preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ mv('-f', 'build/gh-pages/*', botio.public_dir);

botio.message('#### Published');
botio.message();
botio.message('+ Viewer: '+botio.public_url+'/web/viewer.html');
botio.message('+ Viewer: ' + botio.public_url + '/web/viewer.html');
botio.message('+ Viewer (ES5): ' + botio.public_url + '/es5/web/viewer.html');
2 changes: 0 additions & 2 deletions on_cmd_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ silent(true);
echo();
echo('>> Running tests');

process.env['SKIP_BABEL'] = 'true'; // Disable Babel translation.

// Using {async} to avoid unnecessary CPU usage
exec('gulp bottest', {silent:false, async:true}, function(error, output) {
var unitSuccessMatch = output.match(/All unit tests passed/g);
Expand Down
2 changes: 0 additions & 2 deletions on_cmd_unittest.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ cp('-f', __dirname+'/test-files/browser_manifest.json', './test/resources/browse
echo();
echo('>> Unit Tests');

process.env['SKIP_BABEL'] = 'true'; // Disable Babel translation.

exec('gulp unittest', {silent:false, async:true}, function(error, output) {
var successMatch = output.match(/All unit tests passed/g);

Expand Down