Skip to content

Commit 8972fae

Browse files
committed
Webpack: Remove docs build
1 parent 62ae3af commit 8972fae

File tree

3 files changed

+0
-34
lines changed

3 files changed

+0
-34
lines changed

.gitignore

-5
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,3 @@ ipympl/labextension
3232

3333
# OS specific items
3434
.DS_Store
35-
36-
# Sphinx documentation
37-
docs/_build/
38-
docs/source/_static/embed-bundle.js
39-
docs/source/_static/embed-bundle.js.map

MANIFEST.in

-7
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,6 @@ include package.json
99
include webpack.config.js
1010
include ipympl/labextension/*.tgz
1111

12-
# Documentation
13-
graft docs
14-
exclude docs/\#*
15-
prune docs/build
16-
prune docs/gh-pages
17-
prune docs/dist
18-
1912
# Examples
2013
graft examples
2114

webpack.config.js

-22
Original file line numberDiff line numberDiff line change
@@ -64,28 +64,6 @@ module.exports = [
6464
},
6565
externals,
6666
resolve,
67-
},
68-
69-
70-
/**
71-
* Documentation widget bundle
72-
*
73-
* This bundle is used to embed widgets in the package documentation.
74-
*/
75-
{
76-
entry: './src/index.ts',
77-
output: {
78-
filename: 'embed-bundle.js',
79-
path: path.resolve(__dirname, 'docs', 'source', '_static'),
80-
library: "jupyter-matplotlib",
81-
libraryTarget: 'amd'
82-
},
83-
module: {
84-
rules: rules
85-
},
86-
devtool: 'source-map',
87-
externals,
88-
resolve,
8967
}
9068

9169
];

0 commit comments

Comments
 (0)