You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you run docker-compose build at the moment, npm install pulls in less=3.0.0, and this causes an error upon invoking less:
Step 19/21 : RUN invoke less
---> Running in 089ec6915a80
Downloading from pypi -> /srv/nbviewer/notebook-5.0.0.tar.gz
Collecting notebook==5.0.0
Downloading notebook-5.0.0.tar.gz (11.5MB)
Saved ./notebook-5.0.0.tar.gz
Successfully downloaded notebook
[TypeError: Object [object Object] has no method 'tryLoadPlugin']
Extract /srv/nbviewer/notebook-5.0.0.tar.gz in None
ERROR: Service 'nbviewer' failed to build: The command '/bin/sh -c invoke less' returned a non-zero code: 1
This appears to be related to a bug in less 3.0.0, where the tryLoadPlugin is not a function: less/less.js#3116
It can be fixed by pinning less to the latest non-3.0.0 release, but hopefully will be fixed in less itself quickly, so I haven't put in a PR for this project just yet, as it may soon be moot (here's hoping)
If you run
docker-compose build
at the moment,npm install
pulls inless=3.0.0
, and this causes an error upon invoking less:This appears to be related to a bug in less 3.0.0, where the tryLoadPlugin is not a function: less/less.js#3116
It can be fixed by pinning less to the latest non-3.0.0 release, but hopefully will be fixed in less itself quickly, so I haven't put in a PR for this project just yet, as it may soon be moot (here's hoping)
The text was updated successfully, but these errors were encountered: