-
Notifications
You must be signed in to change notification settings - Fork 30k
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
Use Worker to serialize Notebook #226632
Merged
rebornix
merged 16 commits into
microsoft:main
from
nojaf:notebook-serialization-worker
Sep 12, 2024
Merged
Use Worker to serialize Notebook #226632
Changes from 12 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
eb948e1
Use Worker to serialize Notebook
nojaf 366df5a
Put worker behind setting
nojaf c363def
Update worker file to esm
nojaf e3caeae
Verify that node worker is only used in node context.
nojaf 12abccc
Duplicate sortObjectPropertiesRecursively
nojaf eccf86a
Copy worker to dist folder
nojaf b6669a7
Mention desktop application in setting description.
nojaf cdc45ff
Include ending new line
nojaf f7e0eab
Update extensions/ipynb/package.nls.json
nojaf 65f36ea
Merge remote-tracking branch 'origin/main' into pr/nojaf/226632
rebornix fc8fda5
fix worker import
rebornix ddd0f1f
Updates to perform all operations in worker
DonJayamanne 1865c29
Import node worker
DonJayamanne 6926567
Safer way to determine whether node or browser
DonJayamanne edd3903
Updates
DonJayamanne 28692d5
Merge branch 'main' into notebook-serialization-worker
amunger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,13 +8,20 @@ | |
'use strict'; | ||
|
||
const withDefaults = require('../shared.webpack.config'); | ||
const path = require('path'); | ||
|
||
module.exports = withDefaults({ | ||
context: __dirname, | ||
entry: { | ||
extension: './src/ipynbMain.ts', | ||
ipynbMain: './src/ipynbMain.ts', | ||
notebookSerializerWorker: './src/notebookSerializerWorker.ts', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need this notebookSerializerWorker entry as we need to compile a new output, just copying this will not work (as this file as additional imports). |
||
}, | ||
output: { | ||
filename: 'ipynbMain.js' | ||
} | ||
// filename: 'ipynbMain.js' | ||
path: path.resolve(__dirname, 'dist'), | ||
filename: '[name].js' | ||
}, | ||
plugins: [ | ||
...withDefaults.nodePlugins(__dirname), // add plugins, don't replace inherited | ||
] | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,3 +64,4 @@ export interface CellMetadata { | |
*/ | ||
execution_count?: number; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Not sure if this , will wait for builds to go through and do some testing .
Had to change this, as we need to build the worker js file for dist (previous approach woudln't have worked, as we were importing some files from there as well)
I.e. we need to build a separate output