widget-ts-cookiecutter
widget-ts-cookiecutter copied to clipboard
A highly opinionated cookiecutter template for ipywidget extensions.
I was curious if people know why the setup.py builds the package on install: https://github.com/jupyter-widgets/widget-ts-cookiecutter/blob/f8c4f1d2c61374811423eb724b9eb11c6e2f10b1/%7B%7Bcookiecutter.github_project_name%7D%7D/setup.py#L60 It looks like nbextension and labextension are both pre-built and bundled, so it isn't necessary...
This cookiecutter pins the version of `jupyter_packaging` but this breaks because JupyterLab wants to use a different version. https://github.com/travigd/ipydraw/runs/2454430067?check_suite_focus=true#step:7:305
I'd like to develop a javascript-heavy widget extension for the jupyter notebook. I managed to install the example widget and it seems to be working. However, I can't seem to...
Using https://github.com/jupyterlab/galata Examples: https://github.com/jupyter-widgets/ipywidgets/pull/3172 https://github.com/bqplot/bqplot/pull/1311
I was looking into this repo to define my `tsconfig.json` options and we're using stuff from es2015, [see](https://github.com/jupyter-widgets/widget-ts-cookiecutter/blob/master/%7B%7Bcookiecutter.github_project_name%7D%7D/tsconfig.json). Shouldn't we update to use the latest es2017? Or this is fine...
Hi everyone, the readme only shows how to do the development installation in conda. here is how i managed with virtualenvwrapper in linux, maybe it's worth adding to the readme!...
Thanks for maintaining this! This adds lazy-loading of the widget implementation, CSS, and dependencies to the Lab plugin. From a cold cache, this trades: - increased time from the _first_...
It would be nice to have a binder badge in the readme and the appropriate postBuild file premade.
Similar to the widget-cookiecutter https://github.com/jupyter-widgets/widget-cookiecutter#files-generated-by-cookiecutter
Hi folks, in basic js based extensions, the developer could specify the files required, like the following https://github.com/ipython-contrib/jupyter_contrib_nbextensions/blob/master/src/jupyter_contrib_nbextensions/nbextensions/codefolding/main.js#L13-L23 What is the equivalent in this repo? Where could it be specified?...