Skip to content

Commit

Permalink
Publish 0.3.8
Browse files Browse the repository at this point in the history
SHA256 hashes:

yjs-widgets-0.3.8.tgz: 6e99065b8f97a8f5c8799adb6c1a00b3b7c0fd9c2f3b69ff61523b728b6d79fc

yjs_widgets-0.3.8-py3-none-any.whl: 3fe0016ac220b066831ca04e49fbec9f3dc4cd05c5886fdff28fa5265565230c

yjs_widgets-0.3.8.tar.gz: 24cbb20c9f782fe886fec0d8be5de1156fd598cd18eb43475a83752b6f6b61de
  • Loading branch information
davidbrochart committed Oct 22, 2024
1 parent 85f9f49 commit 5c1eebb
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 100 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

<!-- <START NEW CHANGELOG ENTRY> -->

## 0.3.7
## 0.3.8

([Full Changelog](https://github.com/QuantStack/yjs-widgets/compare/v0.3.7...85f9f49226fd75d1953ea913bbe6cd991b5b611e))

### Maintenance and upkeep improvements

- Install jupyterlab before npm build [#19](https://github.com/QuantStack/yjs-widgets/pull/19) ([@davidbrochart](https://github.com/davidbrochart))

### Other merged PRs

- Use jupyter-releaser [#16](https://github.com/QuantStack/yjs-widgets/pull/16) ([@davidbrochart](https://github.com/davidbrochart))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/QuantStack/yjs-widgets/graphs/contributors?from=2024-10-17&to=2024-10-22&type=c))

[@davidbrochart](https://github.com/search?q=repo%3AQuantStack%2Fyjs-widgets+involves%3Adavidbrochart+updated%3A2024-10-17..2024-10-22&type=Issues) | [@jtpio](https://github.com/search?q=repo%3AQuantStack%2Fyjs-widgets+involves%3Ajtpio+updated%3A2024-10-17..2024-10-22&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 0.3.7
198 changes: 99 additions & 99 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,101 +1,101 @@
{
"name": "yjs-widgets",
"version": "0.3.7",
"description": "A JupyterLab extension for widgets based on Yjs.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"yjs"
],
"homepage": "https://github.com/QuantStack/yjs-widgets",
"bugs": {
"url": "https://github.com/QuantStack/yjs-widgets/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Trung Le",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/QuantStack/yjs-widgets.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf yjs_widgets/labextension yjs_widgets/_version.py",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm run build",
"lint": "jlpm prettier && jlpm eslint",
"lint:check": "jlpm prettier:check && jlpm eslint:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "jlpm prettier:base --check",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3",
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/console": "^4.2.4",
"@jupyterlab/coreutils": "^6.0.0",
"@jupyterlab/notebook": "^4.0.0",
"@jupyterlab/services": "^7.0.0",
"@lumino/coreutils": "^2.1.1",
"@lumino/signaling": "^2.1.1",
"@lumino/widgets": "^2.1.1",
"lib0": "^0.2.76",
"uuid": "^9.0.0",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1"
},
"resolutions": {
"@jupyterlab/apputils": "~4.0.0",
"@lumino/coreutils": "^2.1.1",
"@jupyterlab/notebook": "~4.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.2.1",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"copy-webpack-plugin": "^10.0.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
"typescript": "~5.0.4"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "yjs_widgets/labextension"
}
"name": "yjs-widgets",
"version": "0.3.8",
"description": "A JupyterLab extension for widgets based on Yjs.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"yjs"
],
"homepage": "https://github.com/QuantStack/yjs-widgets",
"bugs": {
"url": "https://github.com/QuantStack/yjs-widgets/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Trung Le",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/QuantStack/yjs-widgets.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf yjs_widgets/labextension yjs_widgets/_version.py",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm run build",
"lint": "jlpm prettier && jlpm eslint",
"lint:check": "jlpm prettier:check && jlpm eslint:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "jlpm prettier:base --check",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3",
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/console": "^4.2.4",
"@jupyterlab/coreutils": "^6.0.0",
"@jupyterlab/notebook": "^4.0.0",
"@jupyterlab/services": "^7.0.0",
"@lumino/coreutils": "^2.1.1",
"@lumino/signaling": "^2.1.1",
"@lumino/widgets": "^2.1.1",
"lib0": "^0.2.76",
"uuid": "^9.0.0",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1"
},
"resolutions": {
"@jupyterlab/apputils": "~4.0.0",
"@lumino/coreutils": "^2.1.1",
"@jupyterlab/notebook": "~4.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.2.1",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"copy-webpack-plugin": "^10.0.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
"typescript": "~5.0.4"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "yjs_widgets/labextension"
}
}

0 comments on commit 5c1eebb

Please sign in to comment.