123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- var webpack = require('webpack');
- var path = require('path');
- var fs = require('fs-extra');
- var Handlebars = require('handlebars');
- var Build = require('@jupyterlab/buildutils').Build;
- var package_data = require('./package.json');
- // Ensure a clear build directory.
- var buildDir = path.resolve('./build');
- if (fs.existsSync(buildDir)) {
- fs.removeSync(buildDir);
- }
- fs.ensureDirSync(buildDir);
- // Handle the extensions.
- var jlab = package_data.jupyterlab;
- var extensions = jlab.extensions;
- var mimeExtensions = jlab.mimeExtensions;
- Build.ensureAssets({
- packageNames: Object.keys(mimeExtensions).concat(Object.keys(extensions)),
- output: jlab.outputDir
- });
- // Create the entry point file.
- var source = fs.readFileSync('index.js').toString();
- var template = Handlebars.compile(source);
- var data = {
- jupyterlab_extensions: extensions,
- jupyterlab_mime_extensions: mimeExtensions,
- };
- var result = template(data);
- fs.writeFileSync(path.join(buildDir, 'index.out.js'), result);
- fs.copySync('./package.json', path.join(buildDir, 'package.json'));
- // Set up variables for watch mode.
- var localLinked = {};
- var ignoreCache = new Map();
- Object.keys(jlab.linkedPackages).forEach(function (name) {
- var localPath = require.resolve(path.join(name, 'package.json'));
- localLinked[name] = path.dirname(localPath);
- });
- /**
- * Sync a local path to a linked package path if they are files and differ.
- */
- function maybeSync(localPath, name, rest) {
- var stats = fs.statSync(localPath);
- if (!stats.isFile(localPath)) {
- return;
- }
- var source = fs.realpathSync(path.join(jlab.linkedPackages[name], rest));
- if (source === fs.realpathSync(localPath)) {
- return;
- }
- fs.watchFile(source, { 'interval': 500 }, function(curr) {
- if (!curr || curr.nlink === 0) {
- return;
- }
- try {
- console.log('updating', path.join(name, rest));
- fs.copySync(source, localPath);
- } catch (err) {
- console.error(err);
- }
- });
- }
- /**
- * A WebPack Plugin that copies the assets to the static directory.
- */
- function JupyterLabPlugin(options) {
- _first = true;
- }
- JupyterLabPlugin.prototype.apply = function(compiler) {
- compiler.plugin('after-emit', function(compilation, callback) {
- var staticDir = jlab.staticDir;
- if (!staticDir) {
- callback();
- return;
- }
- // Ensure a clean static directory on the first emit.
- if (this._first && fs.existsSync(staticDir)) {
- fs.removeSync(staticDir);
- }
- this._first = false;
- fs.copySync(buildDir, staticDir);
- callback();
- }.bind(this));
- };
- module.exports = {
- entry: path.resolve(buildDir, 'index.out.js'),
- output: {
- path: path.resolve(buildDir),
- filename: '[name].bundle.js'
- },
- module: {
- rules: [
- { test: /\.css$/, use: ['style-loader', 'css-loader'] },
- { test: /\.json$/, use: 'json-loader' },
- { test: /\.html$/, use: 'file-loader' },
- { test: /\.md$/, use: 'raw-loader' },
- { test: /\.js$/, use: ['source-map-loader'], enforce: 'pre',
- exclude: path.join(process.cwd(), 'node_modules')
- },
- { 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' },
- { test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, use: 'url-loader?limit=10000&mimetype=image/svg+xml' }
- ],
- },
- watchOptions: {
- ignored: function(localPath) {
- localPath = path.resolve(localPath);
- if (ignoreCache.has(localPath)) {
- return ignoreCache.get(localPath);
- }
- // Limit the watched files to those in our local linked package dirs.
- var ignore = true;
- Object.keys(localLinked).some(function (name) {
- // Bail if already found.
- var rootPath = localLinked[name];
- var contained = localPath.indexOf(rootPath + path.sep) !== -1;
- if (localPath !== rootPath && !contained) {
- return false;
- }
- var rest = localPath.slice(rootPath.length);
- if (rest.indexOf('node_modules') === -1) {
- ignore = false;
- maybeSync(localPath, name, rest);
- }
- return true;
- });
- ignoreCache.set(localPath, ignore);
- return ignore;
- }
- },
- node: {
- fs: 'empty'
- },
- bail: true,
- devtool: 'cheap-source-map',
- plugins: [ new JupyterLabPlugin({}) ]
- }
|