Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.1.1: pep517 build fails #614

Closed
kloczek opened this issue Jan 22, 2022 · 11 comments
Closed

3.1.1: pep517 build fails #614

kloczek opened this issue Jan 22, 2022 · 11 comments

Comments

@kloczek
Copy link

kloczek commented Jan 22, 2022

I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account.

  • python3 -sBm build -w --no-isolation
  • because I'm calling build with --no-isolation I'm using during all processes only locally installed modules

Here is the output of the build

+ /usr/bin/python3 -sBm build -w --no-isolation
* Getting dependencies for wheel...
running egg_info
creating nbdime.egg-info
writing manifest file 'nbdime.egg-info/SOURCES.txt'
warning: no previously-included files found matching 'docs/#*'
no previously-included directories found matching 'docs/build'
no previously-included directories found matching 'docs/gh-pages'
no previously-included directories found matching 'docs/dist'
no previously-included directories found matching 'packages/*/coverage'
no previously-included directories found matching 'packages/*/lib'
no previously-included directories found matching 'packages/*/build'
no previously-included directories found matching 'packages/*/node_modules'
no previously-included directories found matching 'packages/*/test/build'
warning: no directories found matching 'nbdime/labextension'
warning: no previously-included files matching '*~' found anywhere in distribution
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no previously-included files matching '*.pyo' found anywhere in distribution
warning: no previously-included files matching '.git' found anywhere in distribution
warning: no previously-included files matching '.ipynb_checkpoints' found anywhere in distribution
writing manifest file 'nbdime.egg-info/SOURCES.txt'
* Building wheel...
running bdist_wheel
running js
npm WARN deprecated crypto@1.0.1: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.
npm WARN deprecated request-promise-native@1.0.9: request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
npm WARN deprecated uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated har-validator@5.1.5: this library is no longer supported
npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
npm WARN deprecated read-package-tree@5.3.1: The functionality that this package provided is now in @npmcli/arborist
npm WARN deprecated request@2.88.0: request has been deprecated, see https://github.com/request/request/issues/3142

> install
> lerna bootstrap --hoist

lerna notice cli v4.0.0
lerna info versioning independent
lerna info Bootstrapping 3 packages
lerna info Installing external dependencies
lerna info hoist Installing hoisted dependencies into root
lerna info hoist Pruning hoisted dependencies
lerna info hoist Finished pruning hoisted dependencies
lerna info hoist Finished bootstrapping root
lerna info Symlinking packages and binaries
lerna success Bootstrapped 3 packages

added 883 packages, and audited 884 packages in 3m

83 packages are looking for funding
  run `npm fund` for details

18 high severity vulnerabilities

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> build
> lerna run build

lerna notice cli v4.0.0
lerna info versioning independent
lerna info Executing command in 3 packages: "npm run build"
lerna info run Ran npm script 'build' in 'nbdime' in 6.6s:

> nbdime@6.1.2 build
> tsc --project . && node scripts/copy-files.js

lerna ERR! npm run build exited 1 in 'nbdime-webapp'
lerna ERR! npm run build stdout:

> build
> webpack -p

lerna ERR! npm run build stderr:
/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:133
                if(isError) throw e;
                            ^

Error: error:0308010C:digital envelope routines::unsupported
    at new Hash (node:internal/crypto/hash:67:19)
    at Object.createHash (node:crypto:130:10)
    at module.exports (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/webpack/lib/util/createHash.js:135:53)
    at NormalModule._initBuildHash (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/webpack/lib/NormalModule.js:417:16)
    at handleParseError (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/webpack/lib/NormalModule.js:471:10)
    at /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/webpack/lib/NormalModule.js:503:5
    at /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/webpack/lib/NormalModule.js:358:12
    at /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:373:3
    at iterateNormalLoaders (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:214:10)
    at iterateNormalLoaders (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:221:10)
    at /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:236:3
    at context.callback (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:111:13)
    at makeSourceMapAndFinish (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/ts-loader/dist/index.js:90:5)
    at successLoader (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/ts-loader/dist/index.js:68:9)
    at Object.loader (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/ts-loader/dist/index.js:22:12)
    at LOADER_EXECUTION (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:119:14)
    at runSyncOrAsync (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:120:4)
    at iterateNormalLoaders (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:232:2)
    at Array.<anonymous> (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/loader-runner/lib/LoaderRunner.js:205:4)
    at Storage.finished (/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js:55:16)
    at /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js:91:9
    at /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/node_modules/graceful-fs/graceful-fs.js:123:16
    at FSReqCallback.readFileAfterClose [as oncomplete] (node:internal/fs/read_file_context:68:3) {
  opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
  library: 'digital envelope routines',
  reason: 'unsupported',
  code: 'ERR_OSSL_EVP_UNSUPPORTED'
}
lerna ERR! npm run build exited 1 in 'nbdime-webapp'
lerna WARN complete Waiting for 1 child process to exit. CTRL-C to exit immediately.
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/pep517/in_process/_in_process.py", line 363, in <module>
    main()
  File "/usr/lib/python3.8/site-packages/pep517/in_process/_in_process.py", line 345, in main
    json_out['return_val'] = hook(**hook_input['kwargs'])
  File "/usr/lib/python3.8/site-packages/pep517/in_process/_in_process.py", line 261, in build_wheel
    return _build_backend().build_wheel(wheel_directory, config_settings,
  File "/usr/lib/python3.8/site-packages/setuptools/build_meta.py", line 230, in build_wheel
    return self._build_with_temp_dir(['bdist_wheel'], '.whl',
  File "/usr/lib/python3.8/site-packages/setuptools/build_meta.py", line 215, in _build_with_temp_dir
    self.run_setup()
  File "/usr/lib/python3.8/site-packages/setuptools/build_meta.py", line 158, in run_setup
    exec(compile(code, __file__, 'exec'), locals())
  File "setup.py", line 171, in <module>
    setup(**setup_args)
  File "/usr/lib/python3.8/site-packages/setuptools/__init__.py", line 155, in setup
    return distutils.core.setup(**attrs)
  File "/usr/lib/python3.8/site-packages/setuptools/_distutils/core.py", line 148, in setup
    return run_commands(dist)
  File "/usr/lib/python3.8/site-packages/setuptools/_distutils/core.py", line 163, in run_commands
    dist.run_commands()
  File "/usr/lib/python3.8/site-packages/setuptools/_distutils/dist.py", line 967, in run_commands
    self.run_command(cmd)
  File "/usr/lib/python3.8/site-packages/setuptools/_distutils/dist.py", line 986, in run_command
    cmd_obj.run()
  File "/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/setupbase.py", line 484, in run
    [self.run_command(cmd) for cmd in cmds]
  File "/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/setupbase.py", line 484, in <listcomp>
    [self.run_command(cmd) for cmd in cmds]
  File "/usr/lib/python3.8/site-packages/setuptools/_distutils/cmd.py", line 313, in run_command
    self.distribution.run_command(command)
  File "/usr/lib/python3.8/site-packages/setuptools/_distutils/dist.py", line 986, in run_command
    cmd_obj.run()
  File "/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/setupbase.py", line 267, in run
    c.run()
  File "/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/setupbase.py", line 385, in run
    run(npm_cmd + ['run', build_cmd], cwd=node_package)
  File "/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/setupbase.py", line 208, in run
    return subprocess.check_call(cmd, **kwargs)
  File "/usr/lib64/python3.8/subprocess.py", line 364, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['/usr/bin/npm', 'run', 'build']' returned non-zero exit status 1.

ERROR Backend subproccess exited when trying to invoke build_wheel
@vidartf
Copy link
Collaborator

vidartf commented Feb 8, 2022

Hello! I have never seen this issue before. It seems like an error related to trying to read a file (using node's fs library), failing with:
opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
library: 'digital envelope routines',
reason: 'unsupported',
code: 'ERR_OSSL_EVP_UNSUPPORTED'

@vidartf
Copy link
Collaborator

vidartf commented Feb 8, 2022

A relevant question to check is which version of node is available on your host.

@kloczek
Copy link
Author

kloczek commented Apr 20, 2022

I'm using nodejs 16.14.1.

@kloczek
Copy link
Author

kloczek commented May 8, 2022

gentle ping .. 😄

@vidartf
Copy link
Collaborator

vidartf commented May 12, 2022

Hi. I'm not really sure what is causing your error. I haven't seen this error on any setup before (locally or on CI), so I would suspect it is something specific to your environment. For reference, I ran the command you listed locally on my Windows machine and it built without any issues. If you debug this further and find out that this is something specific to nbdime, I'd be more than happy try and help you resolve that, but as I cannot reproduce the issue there isn't really much I can do on my end.

@kloczek
Copy link
Author

kloczek commented May 12, 2022

You can try to reporoduce that effect on fedora rawhide (I sill did not patchege taht bit for distro on on which I'm working).

@kloczek
Copy link
Author

kloczek commented Jun 12, 2022

Gentle ping .. any update? 😋

@kloczek
Copy link
Author

kloczek commented Jun 12, 2022

Hi. I'm not really sure what is causing your error. I haven't seen this error on any setup before (locally or on CI), so I would suspect it is something specific to your environmen

Just checked https://github.com/jupyter/nbdime/blob/master/.github/workflows/tests.yml and I don't see that CI is using pep517 based build so this is why it works.

Please at lease try to reproduce that issue using procedure which I've described.

@kloczek
Copy link
Author

kloczek commented Dec 6, 2022

Any update?

@vidartf
Copy link
Collaborator

vidartf commented Apr 22, 2023

This seems to have been related to node version, see #651 . Should now be fixed.

@vidartf vidartf closed this as completed Apr 22, 2023
@kloczek
Copy link
Author

kloczek commented Jul 2, 2023

Just tested 3.2.1 and it works now however see some deprecation warnings. Here is build output:

+ /usr/bin/python3 -sBm build -w --no-isolation
* Getting build dependencies for wheel...
running egg_info
creating nbdime.egg-info
writing nbdime.egg-info/PKG-INFO
writing dependency_links to nbdime.egg-info/dependency_links.txt
writing entry points to nbdime.egg-info/entry_points.txt
writing requirements to nbdime.egg-info/requires.txt
writing top-level names to nbdime.egg-info/top_level.txt
writing manifest file 'nbdime.egg-info/SOURCES.txt'
reading manifest file 'nbdime.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
/usr/lib/python3.8/site-packages/setuptools/config/setupcfg.py:293: _DeprecatedConfig: Deprecated config in `setup.cfg`
!!

        ********************************************************************************
        The license_file parameter is deprecated, use license_files instead.

        By 2023-Oct-30, you need to update your project and remove deprecated calls
        or your builds will no longer be supported.

        See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details.
        ********************************************************************************

!!
  parsed = self.parsers.get(option_name, lambda x: x)(value)
warning: no previously-included files found matching 'docs/#*'
no previously-included directories found matching 'docs/build'
no previously-included directories found matching 'docs/gh-pages'
no previously-included directories found matching 'docs/dist'
no previously-included directories found matching 'packages/*/coverage'
no previously-included directories found matching 'packages/*/lib'
no previously-included directories found matching 'packages/*/build'
no previously-included directories found matching 'packages/*/node_modules'
no previously-included directories found matching 'packages/*/test/build'
warning: no directories found matching 'nbdime/labextension'
warning: no previously-included files matching '*~' found anywhere in distribution
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no previously-included files matching '*.pyo' found anywhere in distribution
warning: no previously-included files matching '.git' found anywhere in distribution
warning: no previously-included files matching '.ipynb_checkpoints' found anywhere in distribution
adding license file 'LICENSE.md'
writing manifest file 'nbdime.egg-info/SOURCES.txt'
* Building wheel...
running bdist_wheel
running js
Installing build dependencies with npm.  This may take a while...
> npm install
npm WARN deprecated crypto@1.0.1: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.
npm WARN deprecated readdir-scoped-modules@1.1.0: This functionality has been moved to @npmcli/fs
npm WARN deprecated @npmcli/move-file@1.1.2: This functionality has been moved to @npmcli/fs
npm WARN deprecated @npmcli/ci-detect@1.4.0: this package has been deprecated, use `ci-info` instead
npm WARN deprecated har-validator@5.1.5: this library is no longer supported
npm WARN deprecated read-package-tree@5.3.1: The functionality that this package provided is now in @npmcli/arborist
npm WARN deprecated uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142

> install
> lerna bootstrap --hoist

lerna notice cli v4.0.0
lerna info versioning independent
lerna info Bootstrapping 3 packages
lerna info Installing external dependencies
lerna info hoist Installing hoisted dependencies into root
lerna info hoist Pruning hoisted dependencies
lerna info hoist Finished pruning hoisted dependencies
lerna info hoist Finished bootstrapping root
lerna info Symlinking packages and binaries
lerna success Bootstrapped 3 packages

added 889 packages, and audited 890 packages in 2m

126 packages are looking for funding
  run `npm fund` for details

67 vulnerabilities (65 moderate, 1 high, 1 critical)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.
> npm run build

> build
> lerna run build

lerna notice cli v4.0.0
lerna info versioning independent
lerna info Executing command in 3 packages: "npm run build"
lerna info run Ran npm script 'build' in 'nbdime' in 5.8s:

> nbdime@6.2.0 build
> tsc --project . && node scripts/copy-files.js

lerna info run Ran npm script 'build' in 'nbdime-jupyterlab' in 13.4s:

> nbdime-jupyterlab@2.2.0 build
> npm run build:lib && npm run build:labextension


> nbdime-jupyterlab@2.2.0 build:lib
> tsc --build


> nbdime-jupyterlab@2.2.0 build:labextension
> npm run build:labextension:source && npm run build:labextension:prebuilt


> nbdime-jupyterlab@2.2.0 build:labextension:source
> rimraf dist && mkdirp dist && cd dist && npm pack ..

nbdime-jupyterlab-2.2.0.tgz

> nbdime-jupyterlab@2.2.0 build:labextension:prebuilt
> rimraf ../../nbdime/labextension && mkdirp ../../nbdime/labextension && jupyter labextension build .

asset 568.20a60a817c800d7ff1cf.js?v=20a60a817c800d7ff1cf 141 KiB [emitted] [immutable] [minimized]
asset 380.afdff9238b9ac447550b.js?v=afdff9238b9ac447550b 20.7 KiB [emitted] [immutable] [minimized] (id hint: vendors)
asset third-party-licenses.json 10.1 KiB [emitted]
asset remoteEntry.42b7c07a01e9b395f8d9.js 7.63 KiB [emitted] [immutable] [minimized] (name: nbdime-jupyterlab)
runtime modules 19.1 KiB 13 modules
cacheable modules 400 KiB
  modules by path ../nbdime/lib/ 312 KiB 53 modules
  modules by path ../../node_modules/ 64 KiB 18 modules
  modules by path ./ 23.7 KiB
    modules by path ./lib/*.js 18.7 KiB 5 modules
    modules by path ./style/*.css 5.01 KiB 2 modules
consume-shared-module modules 672 bytes
  modules by path consume shared module (default) @jupyterlab/ 378 bytes 9 modules
  modules by path consume shared module (default) @lumino/ 252 bytes
    consume shared module (default) @lumino/algorithm@^1.9.0 (singleton) 42 bytes [built] [code generated]
    + 5 modules
  consume shared module (default) codemirror@^5.0.0 (singleton) 42 bytes [built] [code generated]
container entry 42 bytes [built] [code generated]
provide shared module (default) nbdime-jupyterlab@2.2.0 = ./lib/index.js 42 bytes [built] [code generated]

WARNING in license-webpack-plugin: could not find any license file for nbdime. Use the licenseTextOverrides option to add the license text if desired.

WARNING in license-webpack-plugin: could not find any license file for @jupyterlab/coreutils. Use the licenseTextOverrides option to add the license text if desired.

WARNING in license-webpack-plugin: could not find any license file for jsonify. Use the licenseTextOverrides option to add the license text if desired.

webpack 5.88.1 compiled with 3 warnings in 2721 ms
lerna info run Ran npm script 'build' in 'nbdime-webapp' in 41.1s:

> build
> webpack --mode=production

assets by path ../../../packages/webapp/lib/ 9.86 KiB
  assets by path ../../../packages/webapp/lib/app/ 8.7 KiB 16 assets
  asset ../../../packages/webapp/lib/index.d.ts 715 bytes [emitted]
  asset ../../../packages/webapp/lib/index.d.ts.map 471 bytes [emitted]
assets by info 2.79 MiB [immutable]
  assets by path *.svg 1.73 MiB 3 assets
  assets by path *.eot 363 KiB 3 assets
  assets by path *.ttf 362 KiB 3 assets
  assets by path *.woff 203 KiB 3 assets
  assets by path *.woff2 164 KiB 3 assets
assets by path *.js 4.13 MiB
  asset nbdime.js 3.71 MiB [emitted] [minimized] [big] (name: main) 2 related assets
  asset 569.nbdime.js 423 KiB [emitted] [minimized] [big] (id hint: vendors) 1 related asset
  asset 106.nbdime.js 3.46 KiB [emitted] [minimized] 1 related asset
orphan modules 2.11 MiB [orphan] 353 modules
runtime modules 6.32 KiB 12 modules
javascript modules 7.75 MiB 721 modules
asset modules 79.9 KiB (javascript) 2.79 MiB (asset)
  modules by path ../../node_modules/@jupyterlab/ 77.3 KiB 92 modules
  modules by path ../../node_modules/@fortawesome/fontawesome-free/ 630 bytes (javascript) 2.79 MiB (asset) 15 modules
  modules by mime type image/svg+xml 1.36 KiB 4 modules
  modules by mime type image/png 608 bytes 2 modules
json modules 63.2 KiB
  modules by path ../../node_modules/htmlparser2/ 30 KiB 4 modules
  modules by path ../../node_modules/dom-serializer/ 30 KiB 4 modules
  modules by path ../../node_modules/ajv/lib/ 3.12 KiB 2 modules

WARNING in ../../node_modules/@jupyterlab/apputils/lib/clipboard.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/clipboard.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/clipboard.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 7:0-28 7:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/collapse.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/collapse.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/collapse.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/commandlinker.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/commandlinker.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/commandlinker.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 9:0-32 9:0-32
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/commandpalette.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/commandpalette.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/commandpalette.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 10:0-33 10:0-33
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/dialog.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/dialog.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/dialog.tsx'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 11:0-25 11:0-25
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/domutils.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/domutils.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/domutils.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 12:0-27 12:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/hoverbox.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/hoverbox.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/hoverbox.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 13:0-27 13:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/iframe.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/iframe.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/iframe.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 14:0-25 14:0-25
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/index.ts'
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/inputdialog.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/inputdialog.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/inputdialog.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 15:0-30 15:0-30
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/kernelstatuses.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/kernelstatuses.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/kernelstatuses.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 32:0-33 32:0-33
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/mainareawidget.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/mainareawidget.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/mainareawidget.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 16:0-33 16:0-33
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/menufactory.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/menufactory.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/menufactory.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 17:0-30 17:0-30
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/notification.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/notification.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/notification.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 18:0-31 18:0-31
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/printing.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/printing.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/printing.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 19:0-27 19:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/sanitizer.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/sanitizer.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/sanitizer.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 20:0-28 20:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/search.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/search.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/search.tsx'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 21:0-25 21:0-25
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/sessioncontext.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/sessioncontext.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/sessioncontext.tsx'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 22:0-33 22:0-33
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/spinner.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/spinner.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/spinner.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 23:0-26 23:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/splash.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/splash.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/splash.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 24:0-25 24:0-25
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/styling.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/styling.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/styling.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 25:0-26 25:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/thememanager.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/thememanager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/thememanager.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 26:0-31 26:0-31
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/tokens.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/tokens.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 27:0-25 27:0-25
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/toolbar/factory.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/factory.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/factory.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 1:0-26 1:0-26
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/index.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/toolbar/registry.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/registry.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/registry.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 2:0-27 2:0-27
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/toolbar/widget.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/widget.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/widget.tsx'
 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 3:0-25 3:0-25
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/vdom.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/vdom.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/vdom.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 29:0-23 29:0-23
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/widgettracker.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/widgettracker.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/apputils/lib/windowresolver.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/windowresolver.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/windowresolver.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 31:0-33 31:0-33
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/editor.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/editor.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/editor.ts'
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/factory.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/factory.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/factory.ts'
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 10:0-26 10:0-26
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/index.ts'
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/jsoneditor.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/jsoneditor.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/jsoneditor.ts'
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 8:0-29 8:0-29
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/mimetype.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/mimetype.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/mimetype.ts'
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 11:0-27 11:0-27
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/tokens.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/tokens.ts'
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 12:0-25 12:0-25
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/widget.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/widget.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/widget.ts'
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 9:0-25 9:0-25
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyterlab/codemirror/lib/codemirror-ipython.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/codemirror-ipython.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/codemirror-ipython.ts'
 @ ../../node_modules/@jupyterlab/codemirror/lib/mode.js 19:0-30
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 12:0-23 12:0-23
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/codemirror/lib/codemirror-ipythongfm.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/codemirror-ipythongfm.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/codemirror-ipythongfm.ts'
 @ ../../node_modules/@jupyterlab/codemirror/lib/mode.js 20:0-33
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 12:0-23 12:0-23
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/codemirror/lib/editor.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/editor.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/editor.ts'
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 9:0-25 9:0-25
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/codemirror/lib/factory.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/factory.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/factory.ts'
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 7:0-52 10:0-26 10:0-26 19:24-47
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/codemirror/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/index.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/codemirror/lib/mimetype.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/mimetype.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/mimetype.ts'
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 8:0-55 11:0-27 11:0-27 20:25-50
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/codemirror/lib/mode.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/mode.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/mode.ts'
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 12:0-23 12:0-23
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/syntaxstatus.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/syntaxstatus.tsx'
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/codemirror/lib/tokens.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/tokens.ts'
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 14:0-25 14:0-25
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/coreutils/lib/activitymonitor.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/activitymonitor.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/activitymonitor.ts'
 @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 19:13-41
 @ ./src/app/rendermime.ts 6:20-52
 @ ./src/app/diff.ts 15:21-44
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/coreutils/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/index.ts'
 @ ./src/app/rendermime.ts 6:20-52
 @ ./src/app/diff.ts 15:21-44
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/coreutils/lib/interfaces.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/interfaces.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/interfaces.ts'
 @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 20:13-36
 @ ./src/app/rendermime.ts 6:20-52
 @ ./src/app/diff.ts 15:21-44
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/coreutils/lib/markdowncodeblocks.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/markdowncodeblocks.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/markdowncodeblocks.ts'
 @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 21:13-44
 @ ./src/app/rendermime.ts 6:20-52
 @ ./src/app/diff.ts 15:21-44
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/coreutils/lib/pageconfig.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/pageconfig.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/pageconfig.ts'
 @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 22:13-36
 @ ./src/app/rendermime.ts 6:20-52
 @ ./src/app/diff.ts 15:21-44
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/coreutils/lib/path.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/path.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/path.ts'
 @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 23:13-30
 @ ./src/app/rendermime.ts 6:20-52
 @ ./src/app/diff.ts 15:21-44
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/coreutils/lib/text.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/text.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/text.ts'
 @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 24:13-30
 @ ./src/app/rendermime.ts 6:20-52
 @ ./src/app/diff.ts 15:21-44
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/coreutils/lib/time.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/time.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/time.ts'
 @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 25:13-30
 @ ./src/app/rendermime.ts 6:20-52
 @ ./src/app/diff.ts 15:21-44
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/coreutils/lib/url.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/url.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/url.ts'
 @ ./src/app/common.ts 30:14-54
 @ ./src/index.ts 8:17-40

WARNING in ../../node_modules/@jupyterlab/mathjax2/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/mathjax2/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/mathjax2/src/index.ts'
 @ ./src/app/diff.ts 9:19-50
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/nbformat/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/nbformat/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/nbformat/src/index.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/outputmodel.js 5:0-49 38:12-36 170:12-36 171:12-34 172:12-36 175:17-34 183:17-33 197:12-36 197:48-70
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 14:0-30 14:0-30
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/observables/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/index.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/observables/lib/modeldb.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/modeldb.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/modeldb.ts'
 @ ../../node_modules/@jupyterlab/observables/lib/index.js 9:0-26 9:0-26
 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/observables/lib/observablejson.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablejson.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablejson.ts'
 @ ../../node_modules/@jupyterlab/observables/lib/index.js 10:0-33 10:0-33
 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/observables/lib/observablelist.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablelist.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablelist.ts'
 @ ../../node_modules/@jupyterlab/observables/lib/index.js 11:0-33 11:0-33
 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/observables/lib/observablemap.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablemap.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablemap.ts'
 @ ../../node_modules/@jupyterlab/observables/lib/index.js 12:0-32 12:0-32
 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/observables/lib/observablestring.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablestring.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablestring.ts'
 @ ../../node_modules/@jupyterlab/observables/lib/index.js 13:0-35 13:0-35
 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/observables/lib/undoablelist.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/undoablelist.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/undoablelist.ts'
 @ ../../node_modules/@jupyterlab/observables/lib/index.js 14:0-31 14:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/outputarea/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/index.ts'
 @ ../nbdime/lib/merge/widget/output.js
 @ ../nbdime/lib/merge/widget/cell.js 38:17-36
 @ ../nbdime/lib/merge/widget/index.js 19:13-30
 @ ./src/app/common.ts 35:17-51
 @ ./src/index.ts 8:17-40

WARNING in ../../node_modules/@jupyterlab/outputarea/lib/model.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/model.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/model.ts'
 @ ../../node_modules/@jupyterlab/outputarea/lib/index.js 7:0-24 7:0-24
 @ ../nbdime/lib/merge/widget/output.js
 @ ../nbdime/lib/merge/widget/cell.js 38:17-36
 @ ../nbdime/lib/merge/widget/index.js 19:13-30
 @ ./src/app/common.ts 35:17-51
 @ ./src/index.ts 8:17-40

WARNING in ../../node_modules/@jupyterlab/outputarea/lib/widget.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/widget.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/widget.ts'
 @ ../../node_modules/@jupyterlab/outputarea/lib/index.js 8:0-25 8:0-25
 @ ../nbdime/lib/merge/widget/output.js
 @ ../nbdime/lib/merge/widget/cell.js 38:17-36
 @ ../nbdime/lib/merge/widget/index.js 19:13-30
 @ ./src/app/common.ts 35:17-51
 @ ./src/index.ts 8:17-40

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/attachmentmodel.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/attachmentmodel.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/factories.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/factories.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/factories.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 11:0-28 11:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/index.ts'
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/latex.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/latex.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/latex.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 12:0-24 12:0-24
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/mimemodel.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/mimemodel.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/mimemodel.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 13:0-28 13:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/outputmodel.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/outputmodel.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/outputmodel.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 14:0-30 14:0-30
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/registry.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/registry.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/registry.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 15:0-27 15:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/renderers.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/renderers.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/tokens.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/tokens.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 17:0-25 17:0-25
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/rendermime/lib/widgets.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/widgets.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/widgets.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 18:0-26 18:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/basemanager.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/basemanager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/basemanager.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 19:13-37
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/builder/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/builder/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/builder/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/manager.js 7:18-38
 @ ../../node_modules/@jupyterlab/services/lib/index.js 25:13-33
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/config/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/config/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/config/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 20:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/contents/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/contents/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/contents/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 21:13-34
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/contents/validate.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/contents/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/contents/validate.ts'
 @ ../../node_modules/@jupyterlab/services/lib/contents/index.js 29:30-51
 @ ../../node_modules/@jupyterlab/services/lib/index.js 21:13-34
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/event/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/event/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/event/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 22:13-31
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/index.ts'
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/comm.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/comm.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/comm.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernel/default.js 29:15-32
 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 35:18-38
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/default.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/default.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/default.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 35:18-38
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/future.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/future.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/future.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernel/default.js 31:17-36
 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 35:18-38
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/kernel.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/kernel.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/kernel.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 29:28-47
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/manager.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/manager.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 37:13-33
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/messages.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/messages.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/messages.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 31:35-56
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/restapi.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/restapi.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/restapi.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 33:31-51
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/serialize.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/serialize.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/serialize.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernel/default.js 32:31-53
 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 35:18-38
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/validate.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/validate.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernel/restapi.js 8:19-40
 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 33:31-51
 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/kernelspec.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/kernelspec.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/kernelspec.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js 28:32-55
 @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/manager.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/manager.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js 32:13-33
 @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/restapi.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/restapi.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/restapi.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js 30:35-55
 @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/validate.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/validate.ts'
 @ ../../node_modules/@jupyterlab/services/lib/kernelspec/restapi.js 7:19-40
 @ ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js 30:35-55
 @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/manager.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/manager.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 25:13-33
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/nbconvert/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/nbconvert/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/nbconvert/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 32:13-35
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/serverconnection.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/serverconnection.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/serverconnection.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 26:13-42
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/session/default.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/default.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/default.ts'
 @ ../../node_modules/@jupyterlab/services/lib/session/manager.js 11:18-38
 @ ../../node_modules/@jupyterlab/services/lib/session/index.js 32:13-33
 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/session/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/session/manager.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/manager.ts'
 @ ../../node_modules/@jupyterlab/services/lib/session/index.js 32:13-33
 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/session/restapi.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/restapi.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/restapi.ts'
 @ ../../node_modules/@jupyterlab/services/lib/session/index.js 30:32-52
 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/session/session.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/session.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/session.ts'
 @ ../../node_modules/@jupyterlab/services/lib/session/index.js 28:29-49
 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/session/validate.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/validate.ts'
 @ ../../node_modules/@jupyterlab/services/lib/session/restapi.js 8:19-40
 @ ../../node_modules/@jupyterlab/services/lib/session/index.js 30:32-52
 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/setting/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/setting/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/setting/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 28:13-33
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/shim/ws.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/shim/ws.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/shim/ws.ts'
 @ ../../node_modules/@jupyterlab/services/lib/serverconnection.js 20:16-29
 @ ../../node_modules/@jupyterlab/services/lib/index.js 26:13-42
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/default.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/default.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/default.ts'
 @ ../../node_modules/@jupyterlab/services/lib/terminal/manager.js 12:18-38
 @ ../../node_modules/@jupyterlab/services/lib/terminal/index.js 32:13-33
 @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/manager.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/manager.ts'
 @ ../../node_modules/@jupyterlab/services/lib/terminal/index.js 32:13-33
 @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/restapi.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/restapi.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/restapi.ts'
 @ ../../node_modules/@jupyterlab/services/lib/terminal/index.js 30:33-53
 @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/terminal.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/terminal.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/terminal.ts'
 @ ../../node_modules/@jupyterlab/services/lib/terminal/index.js 28:30-51
 @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/user/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/user/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/user/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 30:13-30
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/validate.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/validate.ts'
 @ ../../node_modules/@jupyterlab/services/lib/contents/validate.js 6:19-41
 @ ../../node_modules/@jupyterlab/services/lib/contents/index.js 29:30-51
 @ ../../node_modules/@jupyterlab/services/lib/index.js 21:13-34
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/services/lib/workspace/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/workspace/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/workspace/index.ts'
 @ ../../node_modules/@jupyterlab/services/lib/index.js 31:13-35
 @ ../nbdime/lib/request/index.js 7:19-50
 @ ./src/app/diff.ts 12:18-47
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupylerna success run Ran npm script 'build' in 3 packages in 46.9s:
lerna success - nbdime-jupyterlab
lerna success - nbdime
lerna success - nbdime-webapp
terlab/settingregistry/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/index.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/factory.js 2:0-62 72:43-80 76:52-89 97:47-84
 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 1:0-26 1:0-26
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/settingregistry/lib/settingregistry.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/settingregistry.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/settingregistry.ts'
 @ ../../node_modules/@jupyterlab/settingregistry/lib/index.js 9:0-34 9:0-34
 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/factory.js 2:0-62 72:43-80 76:52-89 97:47-84
 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 1:0-26 1:0-26
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/settingregistry/lib/tokens.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/tokens.ts'
 @ ../../node_modules/@jupyterlab/settingregistry/lib/index.js 10:0-25 10:0-25
 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/factory.js 2:0-62 72:43-80 76:52-89 97:47-84
 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 1:0-26 1:0-26
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/shared-models/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/shared-models/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/shared-models/src/index.ts'
 @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyterlab/statedb/lib/dataconnector.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/dataconnector.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/dataconnector.ts'
 @ ../../node_modules/@jupyterlab/statedb/lib/index.js 21:13-39
 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statedb/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/index.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statedb/lib/interfaces.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/interfaces.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/interfaces.ts'
 @ ../../node_modules/@jupyterlab/statedb/lib/index.js 22:13-36
 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statedb/lib/restorablepool.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/restorablepool.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/restorablepool.ts'
 @ ../../node_modules/@jupyterlab/statedb/lib/index.js 23:13-40
 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statedb/lib/statedb.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/statedb.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/statedb.ts'
 @ ../../node_modules/@jupyterlab/statedb/lib/index.js 24:13-33
 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statedb/lib/tokens.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/tokens.ts'
 @ ../../node_modules/@jupyterlab/statedb/lib/index.js 25:13-32
 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/group.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/group.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/group.tsx'
 @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 3:0-24 3:0-24
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/hover.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/hover.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/hover.tsx'
 @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 4:0-24 4:0-24
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/index.ts'
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/progressBar.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/progressBar.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/progressBar.tsx'
 @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 5:0-30 5:0-30
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/progressCircle.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/progressCircle.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/progressCircle.tsx'
 @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 7:0-33 7:0-33
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/text.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/text.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/text.tsx'
 @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 6:0-23 6:0-23
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/index.ts'
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/defaults/kernelStatus.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/kernelStatus.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/kernelStatus.tsx'
 @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js 3:0-31 3:0-31
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/defaults/lineCol.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/lineCol.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/lineCol.tsx'
 @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js 4:0-26 4:0-26
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/defaults/runningSessions.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/runningSessions.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/runningSessions.tsx'
 @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js 5:0-34 5:0-34
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/index.ts'
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/statusbar.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/statusbar.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/statusbar.ts'
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 11:0-28 11:0-28
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/layout.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/layout.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/layout.ts'
 @ ../../node_modules/@jupyterlab/statusbar/lib/style/statusbar.js 4:0-66 32:3-15 33:26-38 34:30-41 35:31-42
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 12:0-34 12:0-34
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/lineForm.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/lineForm.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/lineForm.ts'
 @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/lineCol.js 9:0-183 69:56-70 71:64-79 71:126-152 72:76-89 75:60-77 76:77-95 77:82-96 78:58-73
 @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js 4:0-26 4:0-26
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/statusbar.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/statusbar.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/statusbar.ts'
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 12:0-34 12:0-34
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/text.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/text.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/text.ts'
 @ ../../node_modules/@jupyterlab/statusbar/lib/style/statusbar.js 5:0-34 21:15-23
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 12:0-34 12:0-34
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/variables.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/variables.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/variables.ts'
 @ ../../node_modules/@jupyterlab/statusbar/lib/style/statusbar.js 6:0-31 8:17-33 9:18-34 14:29-44 19:21-36 22:19-38 27:16-36 28:15-26 30:17-38 31:18-39 37:15-26 38:16-31 39:17-32 40:12-23 41:16-31 42:18-35 43:11-25
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 12:0-34 12:0-34
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/statusbar/lib/tokens.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/tokens.ts'
 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 13:0-25 13:0-25
 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37
 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31
 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/translation/lib/base.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/base.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/base.ts'
 @ ../../node_modules/@jupyterlab/translation/lib/index.js 8:0-23 8:0-23
 @ ../../node_modules/@jupyterlab/rendermime/lib/registry.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 15:0-27 15:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/translation/lib/gettext.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/gettext.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/gettext.ts'
 @ ../../node_modules/@jupyterlab/translation/lib/index.js 9:0-26 9:0-26
 @ ../../node_modules/@jupyterlab/rendermime/lib/registry.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 15:0-27 15:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/translation/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/index.ts'
 @ ../../node_modules/@jupyterlab/rendermime/lib/registry.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 15:0-27 15:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/translation/lib/manager.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/manager.ts'
 @ ../../node_modules/@jupyterlab/translation/lib/index.js 10:0-26 10:0-26
 @ ../../node_modules/@jupyterlab/rendermime/lib/registry.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 15:0-27 15:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/translation/lib/server.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/server.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/server.ts'
 @ ../../node_modules/@jupyterlab/translation/lib/index.js 11:0-25 11:0-25
 @ ../../node_modules/@jupyterlab/rendermime/lib/registry.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 15:0-27 15:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/translation/lib/tokens.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/tokens.ts'
 @ ../../node_modules/@jupyterlab/translation/lib/index.js 12:0-25 12:0-25
 @ ../../node_modules/@jupyterlab/rendermime/lib/registry.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 15:0-27 15:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/translation/lib/utils.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/utils.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/utils.ts'
 @ ../../node_modules/@jupyterlab/translation/lib/gettext.js 15:0-42 34:23-38 87:23-38 147:17-32 284:17-32 435:17-32
 @ ../../node_modules/@jupyterlab/translation/lib/index.js 9:0-26 9:0-26
 @ ../../node_modules/@jupyterlab/rendermime/lib/registry.js
 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 15:0-27 15:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/FormComponentRegistry.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/FormComponentRegistry.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/FormComponentRegistry.tsx'
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 12:0-40 12:0-40
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/blueprint.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/blueprint.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/blueprint.tsx'
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 7:0-28 7:0-28
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/htmlselect.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/htmlselect.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/htmlselect.tsx'
 @ ../../node_modules/@jupyterlab/ui-components/lib/components/index.js 3:0-29 3:0-29
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/index.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/interface.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/interface.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/interface.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/components/index.js 4:0-28 4:0-28
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/menu.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/menu.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/menu.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/components/index.js 5:0-23 5:0-23
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/switch.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/switch.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/switch.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/components/index.js 6:0-25 6:0-25
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/iconimports.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/iconimports.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/iconimports.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 3:0-30 3:0-30
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/index.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/labicon.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/labicon.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/labicon.tsx'
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/commandpalettesvg.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/commandpalettesvg.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/commandpalettesvg.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/index.js 3:0-36 3:0-36
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 5:0-26 5:0-26
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/index.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 5:0-26 5:0-26
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/menusvg.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/menusvg.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/menusvg.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/index.js 4:0-26 4:0-26
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 5:0-26 5:0-26
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/tabbarsvg.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/tabbarsvg.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/tabbarsvg.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/index.js 5:0-28 5:0-28
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 5:0-26 5:0-26
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/index.ts'
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/style/icon.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/style/icon.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/style/icon.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/style/index.js 3:0-23 3:0-23
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/labicon.js 21:0-40 411:81-104 486:77-100 496:27-50
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/style/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/style/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/style/index.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/labicon.js 21:0-40 411:81-104 486:77-100 496:27-50
 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/tokens.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/tokens.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 10:0-25 10:0-25
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyterlab/ui-components/lib/utils.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/utils.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/utils.ts'
 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 11:0-24 11:0-24
 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54
 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27
 @ ./src/app/diff.ts
 @ ./src/index.ts 5:15-36

WARNING in ../../node_modules/@jupyter/ydoc/lib/api.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/api.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/api.ts'
 @ ../../node_modules/@jupyter/ydoc/lib/index.js 9:0-25 9:0-25
 @ ../../node_modules/@jupyterlab/shared-models/lib/index.js 12:0-30 12:0-30
 @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyter/ydoc/lib/index.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/index.ts'
 @ ../../node_modules/@jupyterlab/shared-models/lib/index.js 12:0-30 12:0-30
 @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyter/ydoc/lib/utils.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/utils.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/utils.ts'
 @ ../../node_modules/@jupyter/ydoc/lib/index.js 11:0-27 11:0-27
 @ ../../node_modules/@jupyterlab/shared-models/lib/index.js 12:0-30 12:0-30
 @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in ../../node_modules/@jupyter/ydoc/lib/ymodels.js
Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js):
Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/ymodels.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/ymodels.ts'
 @ ../../node_modules/@jupyter/ydoc/lib/index.js 10:0-29 10:0-29
 @ ../../node_modules/@jupyterlab/shared-models/lib/index.js 12:0-30 12:0-30
 @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58
 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js
 @ ../nbdime/lib/common/editor.js
 @ ./src/app/staticdiff.ts 7:17-52
 @ ./src/app/compare.ts 9:21-44
 @ ./src/index.ts 7:18-42

WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
This can impact web performance.
Assets:
  nbdime.js (3.71 MiB)
  2f517e09eb2ca6650ff5.svg (730 KiB)
  7a8b4f130182d19a2d7c.svg (897 KiB)
  569.nbdime.js (423 KiB)

WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
Entrypoints:
  main (3.71 MiB)
      nbdime.js

176 warnings have detailed information that is not shown.
Use 'stats.errorDetails: true' resp. '--stats-error-details' to show it.

webpack 5.88.1 compiled with 178 warnings in 39294 ms
running handle_files
running build
running build_py
creating build
creating build/lib
creating build/lib/nbdime
copying nbdime/__init__.py -> build/lib/nbdime
copying nbdime/__main__.py -> build/lib/nbdime
copying nbdime/_version.py -> build/lib/nbdime
copying nbdime/args.py -> build/lib/nbdime
copying nbdime/config.py -> build/lib/nbdime
copying nbdime/diff_format.py -> build/lib/nbdime
copying nbdime/diff_utils.py -> build/lib/nbdime
copying nbdime/gitfiles.py -> build/lib/nbdime
copying nbdime/ignorables.py -> build/lib/nbdime
copying nbdime/log.py -> build/lib/nbdime
copying nbdime/nbdiffapp.py -> build/lib/nbdime
copying nbdime/nbmergeapp.py -> build/lib/nbdime
copying nbdime/nbpatchapp.py -> build/lib/nbdime
copying nbdime/nbshowapp.py -> build/lib/nbdime
copying nbdime/patching.py -> build/lib/nbdime
copying nbdime/prettyprint.py -> build/lib/nbdime
copying nbdime/profiling.py -> build/lib/nbdime
copying nbdime/utils.py -> build/lib/nbdime
creating build/lib/nbdime/diffing
copying nbdime/diffing/__init__.py -> build/lib/nbdime/diffing
copying nbdime/diffing/directorydiff.py -> build/lib/nbdime/diffing
copying nbdime/diffing/generic.py -> build/lib/nbdime/diffing
copying nbdime/diffing/lcs.py -> build/lib/nbdime/diffing
copying nbdime/diffing/notebooks.py -> build/lib/nbdime/diffing
copying nbdime/diffing/seq_bruteforce.py -> build/lib/nbdime/diffing
copying nbdime/diffing/seq_difflib.py -> build/lib/nbdime/diffing
copying nbdime/diffing/seq_myers.py -> build/lib/nbdime/diffing
copying nbdime/diffing/sequences.py -> build/lib/nbdime/diffing
copying nbdime/diffing/snakes.py -> build/lib/nbdime/diffing
creating build/lib/nbdime/merging
copying nbdime/merging/__init__.py -> build/lib/nbdime/merging
copying nbdime/merging/autoresolve.py -> build/lib/nbdime/merging
copying nbdime/merging/chunks.py -> build/lib/nbdime/merging
copying nbdime/merging/decisions.py -> build/lib/nbdime/merging
copying nbdime/merging/generic.py -> build/lib/nbdime/merging
copying nbdime/merging/notebooks.py -> build/lib/nbdime/merging
copying nbdime/merging/strategies.py -> build/lib/nbdime/merging
creating build/lib/nbdime/tests
copying nbdime/tests/__init__.py -> build/lib/nbdime/tests
copying nbdime/tests/conftest.py -> build/lib/nbdime/tests
copying nbdime/tests/test_apply_merge.py -> build/lib/nbdime/tests
copying nbdime/tests/test_args.py -> build/lib/nbdime/tests
copying nbdime/tests/test_autoresolve.py -> build/lib/nbdime/tests
copying nbdime/tests/test_cli_apps.py -> build/lib/nbdime/tests
copying nbdime/tests/test_decision_tools.py -> build/lib/nbdime/tests
copying nbdime/tests/test_diff.py -> build/lib/nbdime/tests
copying nbdime/tests/test_diff_format.py -> build/lib/nbdime/tests
copying nbdime/tests/test_diff_gitrefs.py -> build/lib/nbdime/tests
copying nbdime/tests/test_diff_json_conversion.py -> build/lib/nbdime/tests
copying nbdime/tests/test_diff_performance.py -> build/lib/nbdime/tests
copying nbdime/tests/test_diff_sequence.py -> build/lib/nbdime/tests
copying nbdime/tests/test_diff_sequence_bruteforce.py -> build/lib/nbdime/tests
copying nbdime/tests/test_diff_sequence_difflib.py -> build/lib/nbdime/tests
copying nbdime/tests/test_directory_differ.py -> build/lib/nbdime/tests
copying nbdime/tests/test_git_diffdriver.py -> build/lib/nbdime/tests
copying nbdime/tests/test_git_filter_integration.py -> build/lib/nbdime/tests
copying nbdime/tests/test_hg_differ.py -> build/lib/nbdime/tests
copying nbdime/tests/test_js_artifacts_installed.py -> build/lib/nbdime/tests
copying nbdime/tests/test_merge.py -> build/lib/nbdime/tests
copying nbdime/tests/test_merge_format.py -> build/lib/nbdime/tests
copying nbdime/tests/test_merge_notebooks.py -> build/lib/nbdime/tests
copying nbdime/tests/test_merge_notebooks_inline.py -> build/lib/nbdime/tests
copying nbdime/tests/test_myers.py -> build/lib/nbdime/tests
copying nbdime/tests/test_notebook_diff.py -> build/lib/nbdime/tests
copying nbdime/tests/test_package.py -> build/lib/nbdime/tests
copying nbdime/tests/test_patch.py -> build/lib/nbdime/tests
copying nbdime/tests/test_prettyprint.py -> build/lib/nbdime/tests
copying nbdime/tests/test_server_extension.py -> build/lib/nbdime/tests
copying nbdime/tests/test_utils.py -> build/lib/nbdime/tests
copying nbdime/tests/test_web.py -> build/lib/nbdime/tests
copying nbdime/tests/utils.py -> build/lib/nbdime/tests
creating build/lib/nbdime/vcs
copying nbdime/vcs/__init__.py -> build/lib/nbdime/vcs
creating build/lib/nbdime/webapp
copying nbdime/webapp/__init__.py -> build/lib/nbdime/webapp
copying nbdime/webapp/nb_server_extension.py -> build/lib/nbdime/webapp
copying nbdime/webapp/nbdifftool.py -> build/lib/nbdime/webapp
copying nbdime/webapp/nbdiffweb.py -> build/lib/nbdime/webapp
copying nbdime/webapp/nbdimeserver.py -> build/lib/nbdime/webapp
copying nbdime/webapp/nbmergetool.py -> build/lib/nbdime/webapp
copying nbdime/webapp/nbmergeweb.py -> build/lib/nbdime/webapp
copying nbdime/webapp/webutil.py -> build/lib/nbdime/webapp
creating build/lib/nbdime/vcs/git
copying nbdime/vcs/git/__init__.py -> build/lib/nbdime/vcs/git
copying nbdime/vcs/git/diffdriver.py -> build/lib/nbdime/vcs/git
copying nbdime/vcs/git/difftool.py -> build/lib/nbdime/vcs/git
copying nbdime/vcs/git/filter_integration.py -> build/lib/nbdime/vcs/git
copying nbdime/vcs/git/mergedriver.py -> build/lib/nbdime/vcs/git
copying nbdime/vcs/git/mergetool.py -> build/lib/nbdime/vcs/git
creating build/lib/nbdime/vcs/hg
copying nbdime/vcs/hg/__init__.py -> build/lib/nbdime/vcs/hg
copying nbdime/vcs/hg/diff.py -> build/lib/nbdime/vcs/hg
copying nbdime/vcs/hg/diffweb.py -> build/lib/nbdime/vcs/hg
copying nbdime/vcs/hg/merge.py -> build/lib/nbdime/vcs/hg
copying nbdime/vcs/hg/mergeweb.py -> build/lib/nbdime/vcs/hg
creating build/lib/nbdime/tests/files
copying nbdime/tests/files/apap--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/apap--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/apap--3.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/apap.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/attachment--change_attachment.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/attachment--empty_attachments_list.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/attachment--remove_attachment.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/attachment.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/empty.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/error--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/error--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/foo--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/foo--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/inline-conflict--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/inline-conflict--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/inline-conflict--3.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/markdown-only--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/markdown-only--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/mixed-conflicts--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/mixed-conflicts--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/mixed-conflicts--3.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/multi_cell_nb--cellchange.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/multi_cell_nb--local.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/multi_cell_nb--remote.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/multi_cell_nb.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/multilevel-test-base-local-diff.json -> build/lib/nbdime/tests/files
copying nbdime/tests/files/multilevel-test-base.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/multilevel-test-local.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/multilevel-test-merged.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/multilevel-test-remote.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/output-conflict--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/output-conflict--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/output-conflict--3.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/single_cell_nb--changed_ec.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/single_cell_nb--changed_metadata.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/single_cell_nb--changed_output.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/single_cell_nb--changed_source.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/single_cell_nb--changed_source_output.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/single_cell_nb--changed_source_output_ec.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/single_cell_nb--json_output.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/single_cell_nb--json_output_changed.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/single_cell_nb.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/source-conflict--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/source-conflict--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/source-conflict--3.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/src-and-output--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/src-and-output--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/test-data-singlecell--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/test-data-singlecell--2.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/unicode--1.ipynb -> build/lib/nbdime/tests/files
copying nbdime/tests/files/unicode--2.ipynb -> build/lib/nbdime/tests/files
creating build/lib/nbdime/tests/filters
copying nbdime/tests/filters/add_helper.py -> build/lib/nbdime/tests/filters
copying nbdime/tests/filters/noop.py -> build/lib/nbdime/tests/filters
copying nbdime/tests/filters/strip_outputs.py -> build/lib/nbdime/tests/filters
copying nbdime/diff_format.schema.json -> build/lib/nbdime
copying nbdime/merge_format.schema.json -> build/lib/nbdime
creating build/lib/nbdime/webapp/static
copying nbdime/webapp/static/favicon.ico -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/nbdime.js -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/23f19bb08961f37aaf69.eot -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/77206a6bb316fa0aded5.eot -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/9bbb245e67a133f6e486.eot -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/2f517e09eb2ca6650ff5.svg -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/527940b104eb2ea366c8.ttf -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/2285773e6b4b172f07d9.woff -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/4689f52cc96215721344.svg -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/d878b0a6a1144760244f.woff2 -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/491974d108fe4002b2aa.ttf -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/bb58e57c48a3e911f15f.woff -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/7a3337626410ca2f4071.woff2 -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/7a8b4f130182d19a2d7c.svg -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/be9ee23c0c6390141475.ttf -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/eeccf4f66002c6f2ba24.woff -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/1551f4f60c37af51121f.woff2 -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/106.nbdime.js -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/569.nbdime.js -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/nbdime.js.LICENSE.txt -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/nbdime.js.map -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/106.nbdime.js.map -> build/lib/nbdime/webapp/static
copying nbdime/webapp/static/569.nbdime.js.map -> build/lib/nbdime/webapp/static
creating build/lib/nbdime/webapp/templates
copying nbdime/webapp/templates/compare.html -> build/lib/nbdime/webapp/templates
copying nbdime/webapp/templates/diff.html -> build/lib/nbdime/webapp/templates
copying nbdime/webapp/templates/difftool.html -> build/lib/nbdime/webapp/templates
copying nbdime/webapp/templates/merge.html -> build/lib/nbdime/webapp/templates
copying nbdime/webapp/templates/mergetool.html -> build/lib/nbdime/webapp/templates
copying nbdime/webapp/templates/nbdimepage.html -> build/lib/nbdime/webapp/templates
creating build/lib/nbdime/webapp/testnotebooks
copying nbdime/webapp/testnotebooks/base.ipynb -> build/lib/nbdime/webapp/testnotebooks
copying nbdime/webapp/testnotebooks/cellchange.ipynb -> build/lib/nbdime/webapp/testnotebooks
copying nbdime/webapp/testnotebooks/local.ipynb -> build/lib/nbdime/webapp/testnotebooks
copying nbdime/webapp/testnotebooks/remote.ipynb -> build/lib/nbdime/webapp/testnotebooks
copying nbdime/webapp/testnotebooks/scrollA.ipynb -> build/lib/nbdime/webapp/testnotebooks
copying nbdime/webapp/testnotebooks/scrollB.ipynb -> build/lib/nbdime/webapp/testnotebooks
creating build/lib/nbdime/labextension
copying nbdime/labextension/package.json -> build/lib/nbdime/labextension
creating build/lib/nbdime/labextension/schemas
creating build/lib/nbdime/labextension/schemas/nbdime-jupyterlab
copying nbdime/labextension/schemas/nbdime-jupyterlab/plugin.json -> build/lib/nbdime/labextension/schemas/nbdime-jupyterlab
copying nbdime/labextension/schemas/nbdime-jupyterlab/package.json.orig -> build/lib/nbdime/labextension/schemas/nbdime-jupyterlab
creating build/lib/nbdime/labextension/static
copying nbdime/labextension/static/style.js -> build/lib/nbdime/labextension/static
copying nbdime/labextension/static/remoteEntry.42b7c07a01e9b395f8d9.js -> build/lib/nbdime/labextension/static
copying nbdime/labextension/static/568.20a60a817c800d7ff1cf.js -> build/lib/nbdime/labextension/static
copying nbdime/labextension/static/380.afdff9238b9ac447550b.js -> build/lib/nbdime/labextension/static
copying nbdime/labextension/static/third-party-licenses.json -> build/lib/nbdime/labextension/static
creating build/lib/nbdime/notebook_ext
copying nbdime/notebook_ext/index.js -> build/lib/nbdime/notebook_ext
copying nbdime/notebook_ext/nbdime.yaml -> build/lib/nbdime/notebook_ext
installing to build/bdist.linux-x86_64/wheel
running install
running install_lib
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/wheel
creating build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/__main__.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/_version.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/args.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/config.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/diff_format.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/diff_utils.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/gitfiles.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/ignorables.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/log.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/nbdiffapp.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/nbmergeapp.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/nbpatchapp.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/nbshowapp.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/patching.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/prettyprint.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/profiling.py -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/utils.py -> build/bdist.linux-x86_64/wheel/nbdime
creating build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/directorydiff.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/generic.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/lcs.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/notebooks.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/seq_bruteforce.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/seq_difflib.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/seq_myers.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/sequences.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
copying build/lib/nbdime/diffing/snakes.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing
creating build/bdist.linux-x86_64/wheel/nbdime/merging
copying build/lib/nbdime/merging/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/merging
copying build/lib/nbdime/merging/autoresolve.py -> build/bdist.linux-x86_64/wheel/nbdime/merging
copying build/lib/nbdime/merging/chunks.py -> build/bdist.linux-x86_64/wheel/nbdime/merging
copying build/lib/nbdime/merging/decisions.py -> build/bdist.linux-x86_64/wheel/nbdime/merging
copying build/lib/nbdime/merging/generic.py -> build/bdist.linux-x86_64/wheel/nbdime/merging
copying build/lib/nbdime/merging/notebooks.py -> build/bdist.linux-x86_64/wheel/nbdime/merging
copying build/lib/nbdime/merging/strategies.py -> build/bdist.linux-x86_64/wheel/nbdime/merging
creating build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/conftest.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_apply_merge.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_args.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_autoresolve.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_cli_apps.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_decision_tools.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_diff.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_diff_format.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_diff_gitrefs.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_diff_json_conversion.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_diff_performance.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_diff_sequence.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_diff_sequence_bruteforce.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_diff_sequence_difflib.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_directory_differ.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_git_diffdriver.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_git_filter_integration.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_hg_differ.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_js_artifacts_installed.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_merge.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_merge_format.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_merge_notebooks.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_merge_notebooks_inline.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_myers.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_notebook_diff.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_package.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_patch.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_prettyprint.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_server_extension.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_utils.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/test_web.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
copying build/lib/nbdime/tests/utils.py -> build/bdist.linux-x86_64/wheel/nbdime/tests
creating build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/apap--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/apap--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/apap--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/apap.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/attachment--change_attachment.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/attachment--empty_attachments_list.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/attachment--remove_attachment.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/attachment.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/empty.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/error--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/error--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/foo--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/foo--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/inline-conflict--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/inline-conflict--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/inline-conflict--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/markdown-only--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/markdown-only--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/mixed-conflicts--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/mixed-conflicts--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/mixed-conflicts--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/multi_cell_nb--cellchange.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/multi_cell_nb--local.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/multi_cell_nb--remote.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/multi_cell_nb.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/multilevel-test-base-local-diff.json -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/multilevel-test-base.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/multilevel-test-local.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/multilevel-test-merged.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/multilevel-test-remote.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/output-conflict--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/output-conflict--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/output-conflict--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/single_cell_nb--changed_ec.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/single_cell_nb--changed_metadata.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/single_cell_nb--changed_output.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/single_cell_nb--changed_source.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/single_cell_nb--changed_source_output.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/single_cell_nb--changed_source_output_ec.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/single_cell_nb--json_output.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/single_cell_nb--json_output_changed.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/single_cell_nb.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/source-conflict--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/source-conflict--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/source-conflict--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/src-and-output--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/src-and-output--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/test-data-singlecell--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/test-data-singlecell--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/unicode--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
copying build/lib/nbdime/tests/files/unicode--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files
creating build/bdist.linux-x86_64/wheel/nbdime/tests/filters
copying build/lib/nbdime/tests/filters/add_helper.py -> build/bdist.linux-x86_64/wheel/nbdime/tests/filters
copying build/lib/nbdime/tests/filters/noop.py -> build/bdist.linux-x86_64/wheel/nbdime/tests/filters
copying build/lib/nbdime/tests/filters/strip_outputs.py -> build/bdist.linux-x86_64/wheel/nbdime/tests/filters
creating build/bdist.linux-x86_64/wheel/nbdime/vcs
copying build/lib/nbdime/vcs/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs
creating build/bdist.linux-x86_64/wheel/nbdime/vcs/git
copying build/lib/nbdime/vcs/git/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git
copying build/lib/nbdime/vcs/git/diffdriver.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git
copying build/lib/nbdime/vcs/git/difftool.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git
copying build/lib/nbdime/vcs/git/filter_integration.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git
copying build/lib/nbdime/vcs/git/mergedriver.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git
copying build/lib/nbdime/vcs/git/mergetool.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git
creating build/bdist.linux-x86_64/wheel/nbdime/vcs/hg
copying build/lib/nbdime/vcs/hg/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg
copying build/lib/nbdime/vcs/hg/diff.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg
copying build/lib/nbdime/vcs/hg/diffweb.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg
copying build/lib/nbdime/vcs/hg/merge.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg
copying build/lib/nbdime/vcs/hg/mergeweb.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg
creating build/bdist.linux-x86_64/wheel/nbdime/webapp
copying build/lib/nbdime/webapp/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp
copying build/lib/nbdime/webapp/nb_server_extension.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp
copying build/lib/nbdime/webapp/nbdifftool.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp
copying build/lib/nbdime/webapp/nbdiffweb.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp
copying build/lib/nbdime/webapp/nbdimeserver.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp
copying build/lib/nbdime/webapp/nbmergetool.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp
copying build/lib/nbdime/webapp/nbmergeweb.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp
copying build/lib/nbdime/webapp/webutil.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp
creating build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/favicon.ico -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/nbdime.js -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/23f19bb08961f37aaf69.eot -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/77206a6bb316fa0aded5.eot -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/9bbb245e67a133f6e486.eot -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/2f517e09eb2ca6650ff5.svg -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/527940b104eb2ea366c8.ttf -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/2285773e6b4b172f07d9.woff -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/4689f52cc96215721344.svg -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/d878b0a6a1144760244f.woff2 -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/491974d108fe4002b2aa.ttf -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/bb58e57c48a3e911f15f.woff -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/7a3337626410ca2f4071.woff2 -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/7a8b4f130182d19a2d7c.svg -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/be9ee23c0c6390141475.ttf -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/eeccf4f66002c6f2ba24.woff -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/1551f4f60c37af51121f.woff2 -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/106.nbdime.js -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/569.nbdime.js -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/nbdime.js.LICENSE.txt -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/nbdime.js.map -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/106.nbdime.js.map -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
copying build/lib/nbdime/webapp/static/569.nbdime.js.map -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static
creating build/bdist.linux-x86_64/wheel/nbdime/webapp/templates
copying build/lib/nbdime/webapp/templates/compare.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates
copying build/lib/nbdime/webapp/templates/diff.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates
copying build/lib/nbdime/webapp/templates/difftool.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates
copying build/lib/nbdime/webapp/templates/merge.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates
copying build/lib/nbdime/webapp/templates/mergetool.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates
copying build/lib/nbdime/webapp/templates/nbdimepage.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates
creating build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks
copying build/lib/nbdime/webapp/testnotebooks/base.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks
copying build/lib/nbdime/webapp/testnotebooks/cellchange.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks
copying build/lib/nbdime/webapp/testnotebooks/local.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks
copying build/lib/nbdime/webapp/testnotebooks/remote.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks
copying build/lib/nbdime/webapp/testnotebooks/scrollA.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks
copying build/lib/nbdime/webapp/testnotebooks/scrollB.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks
copying build/lib/nbdime/diff_format.schema.json -> build/bdist.linux-x86_64/wheel/nbdime
copying build/lib/nbdime/merge_format.schema.json -> build/bdist.linux-x86_64/wheel/nbdime
creating build/bdist.linux-x86_64/wheel/nbdime/labextension
copying build/lib/nbdime/labextension/package.json -> build/bdist.linux-x86_64/wheel/nbdime/labextension
creating build/bdist.linux-x86_64/wheel/nbdime/labextension/schemas
creating build/bdist.linux-x86_64/wheel/nbdime/labextension/schemas/nbdime-jupyterlab
copying build/lib/nbdime/labextension/schemas/nbdime-jupyterlab/plugin.json -> build/bdist.linux-x86_64/wheel/nbdime/labextension/schemas/nbdime-jupyterlab
copying build/lib/nbdime/labextension/schemas/nbdime-jupyterlab/package.json.orig -> build/bdist.linux-x86_64/wheel/nbdime/labextension/schemas/nbdime-jupyterlab
creating build/bdist.linux-x86_64/wheel/nbdime/labextension/static
copying build/lib/nbdime/labextension/static/style.js -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static
copying build/lib/nbdime/labextension/static/remoteEntry.42b7c07a01e9b395f8d9.js -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static
copying build/lib/nbdime/labextension/static/568.20a60a817c800d7ff1cf.js -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static
copying build/lib/nbdime/labextension/static/380.afdff9238b9ac447550b.js -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static
copying build/lib/nbdime/labextension/static/third-party-licenses.json -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static
creating build/bdist.linux-x86_64/wheel/nbdime/notebook_ext
copying build/lib/nbdime/notebook_ext/index.js -> build/bdist.linux-x86_64/wheel/nbdime/notebook_ext
copying build/lib/nbdime/notebook_ext/nbdime.yaml -> build/bdist.linux-x86_64/wheel/nbdime/notebook_ext
running install_data
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/nbextensions
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/nbextensions/nbdime
copying nbdime/notebook_ext/index.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/nbextensions/nbdime
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/lab
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/lab/extensions
copying packages/labextension/dist/nbdime-jupyterlab-2.2.0.tgz -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/lab/extensions
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab
copying nbdime/labextension/package.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab
copying nbdime/labextension/schemas/nbdime-jupyterlab/package.json.orig -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab
copying nbdime/labextension/schemas/nbdime-jupyterlab/plugin.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static
copying nbdime/labextension/static/568.20a60a817c800d7ff1cf.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static
copying nbdime/labextension/static/380.afdff9238b9ac447550b.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static
copying nbdime/labextension/static/third-party-licenses.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static
copying nbdime/labextension/static/style.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static
copying nbdime/labextension/static/remoteEntry.42b7c07a01e9b395f8d9.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/jupyter_server_config.d
copying jupyter-config/jupyter_server_config.d/nbdime.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/jupyter_server_config.d
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/nbconfig
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/nbconfig/notebook.d
copying jupyter-config/nbconfig/notebook.d/nbdime.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/nbconfig/notebook.d
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/jupyter_notebook_config.d
copying jupyter-config/jupyter_notebook_config.d/nbdime.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/jupyter_notebook_config.d
running install_egg_info
running egg_info
writing nbdime.egg-info/PKG-INFO
writing dependency_links to nbdime.egg-info/dependency_links.txt
writing entry points to nbdime.egg-info/entry_points.txt
writing requirements to nbdime.egg-info/requires.txt
writing top-level names to nbdime.egg-info/top_level.txt
reading manifest file 'nbdime.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
/usr/lib/python3.8/site-packages/setuptools/config/setupcfg.py:293: _DeprecatedConfig: Deprecated config in `setup.cfg`
!!

        ********************************************************************************
        The license_file parameter is deprecated, use license_files instead.

        By 2023-Oct-30, you need to update your project and remove deprecated calls
        or your builds will no longer be supported.

        See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details.
        ********************************************************************************

!!
  parsed = self.parsers.get(option_name, lambda x: x)(value)
warning: no previously-included files found matching 'docs/#*'
no previously-included directories found matching 'docs/build'
no previously-included directories found matching 'docs/gh-pages'
no previously-included directories found matching 'docs/dist'
no previously-included directories found matching 'packages/*/coverage'
no previously-included directories found matching 'packages/*/build'
no previously-included directories found matching 'packages/*/test/build'
warning: no previously-included files matching '*~' found anywhere in distribution
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no previously-included files matching '*.pyo' found anywhere in distribution
warning: no previously-included files matching '.git' found anywhere in distribution
warning: no previously-included files matching '.ipynb_checkpoints' found anywhere in distribution
adding license file 'LICENSE.md'
writing manifest file 'nbdime.egg-info/SOURCES.txt'
Copying nbdime.egg-info to build/bdist.linux-x86_64/wheel/nbdime-3.2.1-py3.8.egg-info
running install_scripts
creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.dist-info/WHEEL
creating '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/dist/.tmp-xn5mi394/nbdime-3.2.1-py2.py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it
adding 'nbdime/__init__.py'
adding 'nbdime/__main__.py'
adding 'nbdime/_version.py'
adding 'nbdime/args.py'
adding 'nbdime/config.py'
adding 'nbdime/diff_format.py'
adding 'nbdime/diff_format.schema.json'
adding 'nbdime/diff_utils.py'
adding 'nbdime/gitfiles.py'
adding 'nbdime/ignorables.py'
adding 'nbdime/log.py'
adding 'nbdime/merge_format.schema.json'
adding 'nbdime/nbdiffapp.py'
adding 'nbdime/nbmergeapp.py'
adding 'nbdime/nbpatchapp.py'
adding 'nbdime/nbshowapp.py'
adding 'nbdime/patching.py'
adding 'nbdime/prettyprint.py'
adding 'nbdime/profiling.py'
adding 'nbdime/utils.py'
adding 'nbdime/diffing/__init__.py'
adding 'nbdime/diffing/directorydiff.py'
adding 'nbdime/diffing/generic.py'
adding 'nbdime/diffing/lcs.py'
adding 'nbdime/diffing/notebooks.py'
adding 'nbdime/diffing/seq_bruteforce.py'
adding 'nbdime/diffing/seq_difflib.py'
adding 'nbdime/diffing/seq_myers.py'
adding 'nbdime/diffing/sequences.py'
adding 'nbdime/diffing/snakes.py'
adding 'nbdime/labextension/package.json'
adding 'nbdime/labextension/schemas/nbdime-jupyterlab/package.json.orig'
adding 'nbdime/labextension/schemas/nbdime-jupyterlab/plugin.json'
adding 'nbdime/labextension/static/380.afdff9238b9ac447550b.js'
adding 'nbdime/labextension/static/568.20a60a817c800d7ff1cf.js'
adding 'nbdime/labextension/static/remoteEntry.42b7c07a01e9b395f8d9.js'
adding 'nbdime/labextension/static/style.js'
adding 'nbdime/labextension/static/third-party-licenses.json'
adding 'nbdime/merging/__init__.py'
adding 'nbdime/merging/autoresolve.py'
adding 'nbdime/merging/chunks.py'
adding 'nbdime/merging/decisions.py'
adding 'nbdime/merging/generic.py'
adding 'nbdime/merging/notebooks.py'
adding 'nbdime/merging/strategies.py'
adding 'nbdime/notebook_ext/index.js'
adding 'nbdime/notebook_ext/nbdime.yaml'
adding 'nbdime/tests/__init__.py'
adding 'nbdime/tests/conftest.py'
adding 'nbdime/tests/test_apply_merge.py'
adding 'nbdime/tests/test_args.py'
adding 'nbdime/tests/test_autoresolve.py'
adding 'nbdime/tests/test_cli_apps.py'
adding 'nbdime/tests/test_decision_tools.py'
adding 'nbdime/tests/test_diff.py'
adding 'nbdime/tests/test_diff_format.py'
adding 'nbdime/tests/test_diff_gitrefs.py'
adding 'nbdime/tests/test_diff_json_conversion.py'
adding 'nbdime/tests/test_diff_performance.py'
adding 'nbdime/tests/test_diff_sequence.py'
adding 'nbdime/tests/test_diff_sequence_bruteforce.py'
adding 'nbdime/tests/test_diff_sequence_difflib.py'
adding 'nbdime/tests/test_directory_differ.py'
adding 'nbdime/tests/test_git_diffdriver.py'
adding 'nbdime/tests/test_git_filter_integration.py'
adding 'nbdime/tests/test_hg_differ.py'
adding 'nbdime/tests/test_js_artifacts_installed.py'
adding 'nbdime/tests/test_merge.py'
adding 'nbdime/tests/test_merge_format.py'
adding 'nbdime/tests/test_merge_notebooks.py'
adding 'nbdime/tests/test_merge_notebooks_inline.py'
adding 'nbdime/tests/test_myers.py'
adding 'nbdime/tests/test_notebook_diff.py'
adding 'nbdime/tests/test_package.py'
adding 'nbdime/tests/test_patch.py'
adding 'nbdime/tests/test_prettyprint.py'
adding 'nbdime/tests/test_server_extension.py'
adding 'nbdime/tests/test_utils.py'
adding 'nbdime/tests/test_web.py'
adding 'nbdime/tests/utils.py'
adding 'nbdime/tests/files/apap--1.ipynb'
adding 'nbdime/tests/files/apap--2.ipynb'
adding 'nbdime/tests/files/apap--3.ipynb'
adding 'nbdime/tests/files/apap.ipynb'
adding 'nbdime/tests/files/attachment--change_attachment.ipynb'
adding 'nbdime/tests/files/attachment--empty_attachments_list.ipynb'
adding 'nbdime/tests/files/attachment--remove_attachment.ipynb'
adding 'nbdime/tests/files/attachment.ipynb'
adding 'nbdime/tests/files/empty.ipynb'
adding 'nbdime/tests/files/error--1.ipynb'
adding 'nbdime/tests/files/error--2.ipynb'
adding 'nbdime/tests/files/foo--1.ipynb'
adding 'nbdime/tests/files/foo--2.ipynb'
adding 'nbdime/tests/files/inline-conflict--1.ipynb'
adding 'nbdime/tests/files/inline-conflict--2.ipynb'
adding 'nbdime/tests/files/inline-conflict--3.ipynb'
adding 'nbdime/tests/files/markdown-only--1.ipynb'
adding 'nbdime/tests/files/markdown-only--2.ipynb'
adding 'nbdime/tests/files/mixed-conflicts--1.ipynb'
adding 'nbdime/tests/files/mixed-conflicts--2.ipynb'
adding 'nbdime/tests/files/mixed-conflicts--3.ipynb'
adding 'nbdime/tests/files/multi_cell_nb--cellchange.ipynb'
adding 'nbdime/tests/files/multi_cell_nb--local.ipynb'
adding 'nbdime/tests/files/multi_cell_nb--remote.ipynb'
adding 'nbdime/tests/files/multi_cell_nb.ipynb'
adding 'nbdime/tests/files/multilevel-test-base-local-diff.json'
adding 'nbdime/tests/files/multilevel-test-base.ipynb'
adding 'nbdime/tests/files/multilevel-test-local.ipynb'
adding 'nbdime/tests/files/multilevel-test-merged.ipynb'
adding 'nbdime/tests/files/multilevel-test-remote.ipynb'
adding 'nbdime/tests/files/output-conflict--1.ipynb'
adding 'nbdime/tests/files/output-conflict--2.ipynb'
adding 'nbdime/tests/files/output-conflict--3.ipynb'
adding 'nbdime/tests/files/single_cell_nb--changed_ec.ipynb'
adding 'nbdime/tests/files/single_cell_nb--changed_metadata.ipynb'
adding 'nbdime/tests/files/single_cell_nb--changed_output.ipynb'
adding 'nbdime/tests/files/single_cell_nb--changed_source.ipynb'
adding 'nbdime/tests/files/single_cell_nb--changed_source_output.ipynb'
adding 'nbdime/tests/files/single_cell_nb--changed_source_output_ec.ipynb'
adding 'nbdime/tests/files/single_cell_nb--json_output.ipynb'
adding 'nbdime/tests/files/single_cell_nb--json_output_changed.ipynb'
adding 'nbdime/tests/files/single_cell_nb.ipynb'
adding 'nbdime/tests/files/source-conflict--1.ipynb'
adding 'nbdime/tests/files/source-conflict--2.ipynb'
adding 'nbdime/tests/files/source-conflict--3.ipynb'
adding 'nbdime/tests/files/src-and-output--1.ipynb'
adding 'nbdime/tests/files/src-and-output--2.ipynb'
adding 'nbdime/tests/files/test-data-singlecell--1.ipynb'
adding 'nbdime/tests/files/test-data-singlecell--2.ipynb'
adding 'nbdime/tests/files/unicode--1.ipynb'
adding 'nbdime/tests/files/unicode--2.ipynb'
adding 'nbdime/tests/filters/add_helper.py'
adding 'nbdime/tests/filters/noop.py'
adding 'nbdime/tests/filters/strip_outputs.py'
adding 'nbdime/vcs/__init__.py'
adding 'nbdime/vcs/git/__init__.py'
adding 'nbdime/vcs/git/diffdriver.py'
adding 'nbdime/vcs/git/difftool.py'
adding 'nbdime/vcs/git/filter_integration.py'
adding 'nbdime/vcs/git/mergedriver.py'
adding 'nbdime/vcs/git/mergetool.py'
adding 'nbdime/vcs/hg/__init__.py'
adding 'nbdime/vcs/hg/diff.py'
adding 'nbdime/vcs/hg/diffweb.py'
adding 'nbdime/vcs/hg/merge.py'
adding 'nbdime/vcs/hg/mergeweb.py'
adding 'nbdime/webapp/__init__.py'
adding 'nbdime/webapp/nb_server_extension.py'
adding 'nbdime/webapp/nbdifftool.py'
adding 'nbdime/webapp/nbdiffweb.py'
adding 'nbdime/webapp/nbdimeserver.py'
adding 'nbdime/webapp/nbmergetool.py'
adding 'nbdime/webapp/nbmergeweb.py'
adding 'nbdime/webapp/webutil.py'
adding 'nbdime/webapp/static/106.nbdime.js'
adding 'nbdime/webapp/static/106.nbdime.js.map'
adding 'nbdime/webapp/static/1551f4f60c37af51121f.woff2'
adding 'nbdime/webapp/static/2285773e6b4b172f07d9.woff'
adding 'nbdime/webapp/static/23f19bb08961f37aaf69.eot'
adding 'nbdime/webapp/static/2f517e09eb2ca6650ff5.svg'
adding 'nbdime/webapp/static/4689f52cc96215721344.svg'
adding 'nbdime/webapp/static/491974d108fe4002b2aa.ttf'
adding 'nbdime/webapp/static/527940b104eb2ea366c8.ttf'
adding 'nbdime/webapp/static/569.nbdime.js'
adding 'nbdime/webapp/static/569.nbdime.js.map'
adding 'nbdime/webapp/static/77206a6bb316fa0aded5.eot'
adding 'nbdime/webapp/static/7a3337626410ca2f4071.woff2'
adding 'nbdime/webapp/static/7a8b4f130182d19a2d7c.svg'
adding 'nbdime/webapp/static/9bbb245e67a133f6e486.eot'
adding 'nbdime/webapp/static/bb58e57c48a3e911f15f.woff'
adding 'nbdime/webapp/static/be9ee23c0c6390141475.ttf'
adding 'nbdime/webapp/static/d878b0a6a1144760244f.woff2'
adding 'nbdime/webapp/static/eeccf4f66002c6f2ba24.woff'
adding 'nbdime/webapp/static/favicon.ico'
adding 'nbdime/webapp/static/nbdime.js'
adding 'nbdime/webapp/static/nbdime.js.LICENSE.txt'
adding 'nbdime/webapp/static/nbdime.js.map'
adding 'nbdime/webapp/templates/compare.html'
adding 'nbdime/webapp/templates/diff.html'
adding 'nbdime/webapp/templates/difftool.html'
adding 'nbdime/webapp/templates/merge.html'
adding 'nbdime/webapp/templates/mergetool.html'
adding 'nbdime/webapp/templates/nbdimepage.html'
adding 'nbdime/webapp/testnotebooks/base.ipynb'
adding 'nbdime/webapp/testnotebooks/cellchange.ipynb'
adding 'nbdime/webapp/testnotebooks/local.ipynb'
adding 'nbdime/webapp/testnotebooks/remote.ipynb'
adding 'nbdime/webapp/testnotebooks/scrollA.ipynb'
adding 'nbdime/webapp/testnotebooks/scrollB.ipynb'
adding 'nbdime-3.2.1.data/data/etc/jupyter/jupyter_notebook_config.d/nbdime.json'
adding 'nbdime-3.2.1.data/data/etc/jupyter/jupyter_server_config.d/nbdime.json'
adding 'nbdime-3.2.1.data/data/etc/jupyter/nbconfig/notebook.d/nbdime.json'
adding 'nbdime-3.2.1.data/data/share/jupyter/lab/extensions/nbdime-jupyterlab-2.2.0.tgz'
adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/package.json'
adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab/package.json.orig'
adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab/plugin.json'
adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/380.afdff9238b9ac447550b.js'
adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/568.20a60a817c800d7ff1cf.js'
adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/remoteEntry.42b7c07a01e9b395f8d9.js'
adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/style.js'
adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/third-party-licenses.json'
adding 'nbdime-3.2.1.data/data/share/jupyter/nbextensions/nbdime/index.js'
adding 'nbdime-3.2.1.dist-info/LICENSE.md'
adding 'nbdime-3.2.1.dist-info/METADATA'
adding 'nbdime-3.2.1.dist-info/WHEEL'
adding 'nbdime-3.2.1.dist-info/entry_points.txt'
adding 'nbdime-3.2.1.dist-info/top_level.txt'
adding 'nbdime-3.2.1.dist-info/RECORD'
removing build/bdist.linux-x86_64/wheel
Successfully built nbdime-3.2.1-py2.py3-none-any.whl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants