Skip to content
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
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,3 @@ ipympl/labextension

# OS specific items
.DS_Store

# Sphinx documentation
docs/_build/
docs/source/_static/embed-bundle.js
docs/source/_static/embed-bundle.js.map
7 changes: 0 additions & 7 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@ include package.json
include webpack.config.js
include ipympl/labextension/*.tgz

# Documentation
graft docs
exclude docs/\#*
prune docs/build
prune docs/gh-pages
prune docs/dist

# Examples
graft examples

Expand Down
22 changes: 0 additions & 22 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,28 +64,6 @@ module.exports = [
},
externals,
resolve,
},


/**
* Documentation widget bundle
*
* This bundle is used to embed widgets in the package documentation.
*/
{
entry: './src/index.ts',
output: {
filename: 'embed-bundle.js',
path: path.resolve(__dirname, 'docs', 'source', '_static'),
library: "jupyter-matplotlib",
libraryTarget: 'amd'
},
module: {
rules: rules
},
devtool: 'source-map',
externals,
resolve,
}

];