-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Moves bundle target/task to gulpfile.js #7240
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
Conversation
|
||
var BUILD_DIR = 'build/'; | ||
var L10N_DIR = 'l10n/'; | ||
|
||
require('./make.js'); | ||
var makeFile = require('./make.js'); | ||
var bundle = makeFile.bundler; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't it be makeFile.bundle
instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
0e848b2
to
ae989b8
Compare
@@ -2179,7 +2179,7 @@ window.addEventListener('afterprint', function afterPrint(evt) { | |||
|
|||
exports.PDFViewerApplication = PDFViewerApplication; | |||
|
|||
// TODO remove circular reference of pdfjs-web/secondary_toolbar on app. | |||
//// TODO remove circular reference of pdfjs-web/secondary_toolbar on app. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needed because our preprocessor removes this comment -- was not an issue since in the past it was a two stage preprocessing. See viewer.js
[COMMON_WEB_FILES_PREPROCESS, MOZCENTRAL_CONTENT_DIR + '/web'], | ||
[BUILD_DIR + 'viewer.js', MOZCENTRAL_CONTENT_DIR + '/web'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why can't we move this to the copy
section above, just like the other targets?
/botio preview |
From: Bot.io (Linux)ReceivedCommand cmd_preview from @timvandermeij received. Current queue size: 0 Live output at: http://107.21.233.14:8877/5f050352b6a457e/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_preview from @timvandermeij received. Current queue size: 0 Live output at: http://107.22.172.223:8877/72529af7d1e6ce7/output.txt |
From: Bot.io (Linux)SuccessFull output at http://107.21.233.14:8877/5f050352b6a457e/output.txt Total script time: 1.06 mins Published |
From: Bot.io (Windows)SuccessFull output at http://107.22.172.223:8877/72529af7d1e6ce7/output.txt Total script time: 1.31 mins Published |
Nice work! |
Looking at the latest diff for |
Add fixes double processing of the bundled files -- the
//#expand __BUNDLE__
content was not processed first time.Ref #7062