89 строки
2.2 KiB
JavaScript
89 строки
2.2 KiB
JavaScript
const path = require('path');
|
|
const version = require('./package.json').version;
|
|
|
|
// Custom webpack rules
|
|
const rules = [
|
|
{ test: /\.ts$/, loader: 'ts-loader' },
|
|
{ test: /\.js$/, loader: 'source-map-loader' },
|
|
{ test: /\.css$/, use: ['style-loader', 'css-loader']}
|
|
];
|
|
|
|
// Packages that shouldn't be bundled but loaded at runtime
|
|
const externals = ['@jupyter-widgets/base'];
|
|
|
|
const resolve = {
|
|
// Add '.ts' and '.tsx' as resolvable extensions.
|
|
extensions: [".webpack.js", ".web.js", ".ts", ".js"]
|
|
};
|
|
|
|
module.exports = [
|
|
/**
|
|
* Notebook extension
|
|
*
|
|
* This bundle only contains the part of the JavaScript that is run on load of
|
|
* the notebook.
|
|
*/
|
|
{
|
|
entry: './src/extension.ts',
|
|
output: {
|
|
filename: 'index.js',
|
|
path: path.resolve(__dirname, 'powerbiclient', 'nbextension', 'static'),
|
|
libraryTarget: 'amd'
|
|
},
|
|
module: {
|
|
rules: rules
|
|
},
|
|
devtool: 'source-map',
|
|
externals,
|
|
resolve,
|
|
},
|
|
|
|
/**
|
|
* Embeddable powerbi-jupyter-client bundle
|
|
*
|
|
* This bundle is almost identical to the notebook extension bundle. The only
|
|
* difference is in the configuration of the webpack public path for the
|
|
* static assets.
|
|
*
|
|
* The target bundle is always `dist/index.js`, which is the path required by
|
|
* the custom widget embedder.
|
|
*/
|
|
{
|
|
entry: './src/index.ts',
|
|
output: {
|
|
filename: 'index.js',
|
|
path: path.resolve(__dirname, 'dist'),
|
|
libraryTarget: 'amd',
|
|
library: "powerbi-jupyter-client",
|
|
publicPath: 'https://unpkg.com/powerbi-jupyter-client@' + version + '/dist/'
|
|
},
|
|
devtool: 'source-map',
|
|
module: {
|
|
rules: rules
|
|
},
|
|
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: "powerbi-jupyter-client",
|
|
libraryTarget: 'amd'
|
|
},
|
|
module: {
|
|
rules: rules
|
|
},
|
|
devtool: 'source-map',
|
|
externals,
|
|
resolve,
|
|
}
|
|
];
|