forked from pool/python-jupyter-ydoc
Benjamin Greiner
06928f70a9
## Enhancements made * Add the awareness in the shared document interface #282 (@brichet) * Doc awareness #277 (@brichet) * Improve notebook output stream initialization #275 (@davidbrochart) * Add YDocument source getter/setter #273 (@davidbrochart) * Allow empty notebook #266 (@davidbrochart) * Add streamOutputChange attribute to cell change object #264 (@davidbrochart) * Add hash property with setter and getter #262 (@krassowski) * Expose execution_state in the JS package #259 (@krassowski) * Add undo_manager to Y documents #248 (@davidbrochart) * Add optional origin to transaction, filter out 'modeldb' origin #246 (@davidbrochart) * Add appendStreamOutput and removeStreamOutput methods #241 (@davidbrochart) * Update python>=3.8, pycrdt>=0.8.11, pre-commit, README #217 (@davidbrochart) * Store YBlob as bytes, not base64-encoded string #209 (@davidbrochart) * Change notebook code cell stream output schema #201 (@davidbrochart) * Add cell execution_state #197 (@davidbrochart) ## Bugs fixed * Fix attachments change attribute assignment #260 (@krassowski) * Fix createOutputs, rename 'modeldb' origin to 'silent-change' #254 (@davidbrochart) ## Maintenance and upkeep improvements OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-jupyter-ydoc?expand=0&rev=23
20 lines
431 B
Bash
20 lines
431 B
Bash
#!/bin/sh
|
|
#
|
|
# Script to create node_modules.tar.xz for the tests.
|
|
# Adapted from .github/workflows/test.yml
|
|
# Execute this in an extracted github archive/cloned repository
|
|
# Note: The pathname MUST NOT include any ':' as is common
|
|
# in checked out obs package directories.
|
|
|
|
# requires: yarn
|
|
|
|
pushd javascript
|
|
yarn
|
|
yarn build
|
|
popd
|
|
|
|
tar cJf node_modules.tar.xz \
|
|
node_modules \
|
|
javascript/lib \
|
|
javascript/tsconfig.tsbuildinfo
|