123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- const data = require('./package.json');
- const webpack = require('webpack');
- const Build = require('@jupyterlab/builder').Build;
- const jlab = data.jupyterlab;
- // Create a list of application extensions and mime extensions from
- // jlab.extensions
- const extensions = {};
- const mimeExtensions = {};
- for (const key of jlab.extensions) {
- const {
- jupyterlab: { extension, mimeExtension }
- } = require(`${key}/package.json`);
- if (extension !== undefined) {
- extensions[key] = extension === true ? '' : extension;
- }
- if (mimeExtension !== undefined) {
- mimeExtensions[key] = mimeExtension === true ? '' : mimeExtension;
- }
- }
- const extensionAssetConfig = Build.ensureAssets({
- packageNames: [...Object.keys(jlab.extensions ?? {}), ...Object.keys(jlab.mimeExtensions ?? {})],
- output: './build'
- });
- module.exports = [
- {
- entry: ['whatwg-fetch', './index.js'],
- output: {
- path: __dirname + '/build',
- filename: 'bundle.js'
- },
- // node: {
- // fs: 'empty'
- // },
- bail: true,
- devtool: 'source-map',
- mode: 'development',
- module: {
- rules: [
- { test: /\.css$/, use: ['style-loader', 'css-loader'] },
- { test: /\.html$/, use: 'file-loader' },
- { test: /\.md$/, use: 'raw-loader' },
- { test: /\.(jpg|png|gif)$/, use: 'file-loader' },
- { test: /\.js.map$/, use: 'file-loader' },
- {
- test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/,
- use: 'url-loader?limit=10000&mimetype=application/font-woff'
- },
- {
- test: /\.woff(\?v=\d+\.\d+\.\d+)?$/,
- use: 'url-loader?limit=10000&mimetype=application/font-woff'
- },
- {
- test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
- use: 'url-loader?limit=10000&mimetype=application/octet-stream'
- },
- { test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, use: 'file-loader' },
- {
- // In .css files, svg is loaded as a data URI.
- test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
- issuer: /\.css$/,
- use: {
- loader: 'svg-url-loader',
- options: { encoding: 'none', limit: 10000 }
- }
- },
- {
- // In .ts and .tsx files (both of which compile to .js), svg files
- // must be loaded as a raw string instead of data URIs.
- test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
- issuer: /\.js$/,
- use: {
- loader: 'raw-loader'
- }
- }
- ]
- },
- plugins: [
- new webpack.DefinePlugin({
- // Needed for Blueprint. See https://github.com/palantir/blueprint/issues/4393
- 'process.env': '{}',
- // Needed for various packages using cwd(), like the path polyfill
- process: { cwd: () => '/' }
- })
- ]
- }
- ].concat(extensionAssetConfig);
|