Skip to content

Commit 13bfecb

Browse files
committed
Publish 0.3.0
SHA256 hashes: glue-jupyterlab-0.3.0.tgz: be09e6f80efc92b8742b41e0bb27ed2370d2a2a63bd012b18fa72d52e29b3036 glue_jupyterlab-0.3.0-py3-none-any.whl: 538786bbf24727b00d24fb7f8c8e9bc825614b575fd0097330b48168e8d55ac6 glue_jupyterlab-0.3.0.tar.gz: b281e4523f3f3daf3a1769b2f7765a531d6f591414e4b25a3760f10f2daa7630
1 parent 363164d commit 13bfecb

File tree

2 files changed

+148
-132
lines changed

2 files changed

+148
-132
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,20 @@
22

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

5+
## 0.3.0
6+
7+
([Full Changelog](https://github.com/QuantStack/glue-jupyterlab/compare/v0.2.0...363164d5a6b6368b75df7b82e93a889a5e0f7ee3))
8+
9+
### Merged PRs
10+
11+
- Add ability to remove tab [#117](https://github.com/QuantStack/glue-jupyterlab/pull/117) ([@trungleduc](https://github.com/trungleduc))
12+
- Add ability to drag and drop data into existing viewers for new layer creation [#115](https://github.com/QuantStack/glue-jupyterlab/pull/115) ([@brichet](https://github.com/brichet))
13+
- Add documentation [#114](https://github.com/QuantStack/glue-jupyterlab/pull/114) ([@martinRenou](https://github.com/martinRenou))
14+
15+
### Contributors to this release
16+
17+
([GitHub contributors page for this release](https://github.com/QuantStack/glue-jupyterlab/graphs/contributors?from=2023-07-05&to=2023-07-10&type=c))
18+
19+
[@brichet](https://github.com/search?q=repo%3AQuantStack%2Fglue-jupyterlab+involves%3Abrichet+updated%3A2023-07-05..2023-07-10&type=Issues) | [@github-actions](https://github.com/search?q=repo%3AQuantStack%2Fglue-jupyterlab+involves%3Agithub-actions+updated%3A2023-07-05..2023-07-10&type=Issues) | [@martinRenou](https://github.com/search?q=repo%3AQuantStack%2Fglue-jupyterlab+involves%3AmartinRenou+updated%3A2023-07-05..2023-07-10&type=Issues) | [@trungleduc](https://github.com/search?q=repo%3AQuantStack%2Fglue-jupyterlab+involves%3Atrungleduc+updated%3A2023-07-05..2023-07-10&type=Issues)
20+
521
<!-- <END NEW CHANGELOG ENTRY> -->

package.json

+132-132
Original file line numberDiff line numberDiff line change
@@ -1,136 +1,136 @@
11
{
2-
"name": "glue-jupyterlab",
3-
"version": "0.2.0",
4-
"description": "A JupyterLab extension for glue-viz",
5-
"keywords": [
6-
"jupyter",
7-
"jupyterlab",
8-
"jupyterlab-extension"
9-
],
10-
"homepage": "https://github.com/QuantStack/glue-jupyterlab",
11-
"bugs": {
12-
"url": "https://github.com/QuantStack/glue-jupyterlab/issues"
13-
},
14-
"license": "BSD-3-Clause",
15-
"author": {
16-
"name": "QuantStack",
17-
"email": "[email protected]"
18-
},
19-
"files": [
20-
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
21-
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
22-
],
23-
"main": "lib/index.js",
24-
"types": "lib/index.d.ts",
25-
"style": "style/index.css",
26-
"repository": {
27-
"type": "git",
28-
"url": "https://github.com/QuantStack/glue-jupyterlab.git"
29-
},
30-
"scripts": {
31-
"build": "jlpm build:schema && jlpm build:lib && jlpm build:labextension:dev",
32-
"build:prod": "jlpm clean && jlpm build:schema && jlpm build:lib:prod && jlpm build:labextension",
33-
"build:labextension": "jupyter labextension build .",
34-
"build:labextension:dev": "jupyter labextension build --development True .",
35-
"build:lib": "tsc --sourceMap",
36-
"build:lib:prod": "tsc",
37-
"build:schema": "json2ts -i src/schemas -o src/_interface --no-unknownAny --unreachableDefinitions --cwd ./src/schemas",
38-
"clean": "jlpm clean:lib",
39-
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
40-
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
41-
"clean:labextension": "rimraf glue_jupyterlab/labextension glue_jupyterlab/_version.py",
42-
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
43-
"eslint": "jlpm eslint:check --fix",
44-
"eslint:check": "eslint . --cache --ext .ts,.tsx",
45-
"install:extension": "jlpm build",
46-
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
47-
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
48-
"prettier": "jlpm prettier:base --write --list-different",
49-
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
50-
"prettier:check": "jlpm prettier:base --check",
51-
"stylelint": "jlpm stylelint:check --fix",
52-
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
53-
"test": "jest --coverage",
54-
"watch": "run-p watch:src watch:labextension",
55-
"watch:src": "tsc -w",
56-
"watch:labextension": "jupyter labextension watch ."
57-
},
58-
"dependencies": {
59-
"@jupyter/docprovider": "^1.0.0-alpha.8",
60-
"@jupyter/ydoc": "^1.0.2",
61-
"@jupyterlab/application": "^4.0.0",
62-
"@jupyterlab/apputils": "^4.0.0",
63-
"@jupyterlab/coreutils": "^6.0.0",
64-
"@jupyterlab/docregistry": "^4.0.0",
65-
"@jupyterlab/launcher": "^4.0.2",
66-
"@jupyterlab/mainmenu": "^4.0.0",
67-
"@jupyterlab/notebook": "^4.0.0",
68-
"@jupyterlab/observables": "^5.0.0",
69-
"@jupyterlab/rendermime": "^4.0.0",
70-
"@jupyterlab/services": "^7.0.0",
71-
"@jupyterlab/ui-components": "^4.0.0",
72-
"@lumino/algorithm": "^2.0.0",
73-
"@lumino/commands": "^2.1.0",
74-
"@lumino/coreutils": "^2.1.0",
75-
"@lumino/disposable": "^2.1.0",
76-
"@lumino/messaging": "^2.0.0",
77-
"@lumino/signaling": "^2.1.0",
78-
"@lumino/widgets": "^2.1.0",
79-
"gridstack": "^6.0.1",
80-
"yjs-widgets": "^0.3.3"
81-
},
82-
"devDependencies": {
83-
"@jupyterlab/builder": "^4.0.0",
84-
"@jupyterlab/testutils": "^4.0.0",
85-
"@types/jest": "^29.2.0",
86-
"@typescript-eslint/eslint-plugin": "^4.8.1",
87-
"@typescript-eslint/parser": "^4.8.1",
88-
"eslint": "^7.14.0",
89-
"eslint-config-prettier": "^6.15.0",
90-
"eslint-plugin-prettier": "^3.1.4",
91-
"jest": "^29.5.0",
92-
"json-schema-to-typescript": "^10.1.5",
93-
"mkdirp": "^1.0.3",
94-
"npm-run-all": "^4.1.5",
95-
"prettier": "^2.1.1",
96-
"rimraf": "^3.0.2",
97-
"stylelint": "^14.3.0",
98-
"stylelint-config-prettier": "^9.0.4",
99-
"stylelint-config-recommended": "^6.0.0",
100-
"stylelint-config-standard": "~24.0.0",
101-
"stylelint-prettier": "^2.0.0",
102-
"typescript": "~5.0.4"
103-
},
104-
"sideEffects": [
105-
"style/*.css",
106-
"style/index.js"
107-
],
108-
"styleModule": "style/index.js",
109-
"publishConfig": {
110-
"access": "public"
111-
},
112-
"jupyterlab": {
113-
"discovery": {
114-
"server": {
115-
"managers": [
116-
"pip"
117-
],
118-
"base": {
119-
"name": "glue-jupyterlab"
120-
}
121-
}
2+
"name": "glue-jupyterlab",
3+
"version": "0.3.0",
4+
"description": "A JupyterLab extension for glue-viz",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension"
9+
],
10+
"homepage": "https://github.com/QuantStack/glue-jupyterlab",
11+
"bugs": {
12+
"url": "https://github.com/QuantStack/glue-jupyterlab/issues"
13+
},
14+
"license": "BSD-3-Clause",
15+
"author": {
16+
"name": "QuantStack",
17+
"email": "[email protected]"
18+
},
19+
"files": [
20+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
21+
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
22+
],
23+
"main": "lib/index.js",
24+
"types": "lib/index.d.ts",
25+
"style": "style/index.css",
26+
"repository": {
27+
"type": "git",
28+
"url": "https://github.com/QuantStack/glue-jupyterlab.git"
29+
},
30+
"scripts": {
31+
"build": "jlpm build:schema && jlpm build:lib && jlpm build:labextension:dev",
32+
"build:prod": "jlpm clean && jlpm build:schema && jlpm build:lib:prod && jlpm build:labextension",
33+
"build:labextension": "jupyter labextension build .",
34+
"build:labextension:dev": "jupyter labextension build --development True .",
35+
"build:lib": "tsc --sourceMap",
36+
"build:lib:prod": "tsc",
37+
"build:schema": "json2ts -i src/schemas -o src/_interface --no-unknownAny --unreachableDefinitions --cwd ./src/schemas",
38+
"clean": "jlpm clean:lib",
39+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
40+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
41+
"clean:labextension": "rimraf glue_jupyterlab/labextension glue_jupyterlab/_version.py",
42+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
43+
"eslint": "jlpm eslint:check --fix",
44+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
45+
"install:extension": "jlpm build",
46+
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
47+
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
48+
"prettier": "jlpm prettier:base --write --list-different",
49+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
50+
"prettier:check": "jlpm prettier:base --check",
51+
"stylelint": "jlpm stylelint:check --fix",
52+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
53+
"test": "jest --coverage",
54+
"watch": "run-p watch:src watch:labextension",
55+
"watch:src": "tsc -w",
56+
"watch:labextension": "jupyter labextension watch ."
12257
},
123-
"extension": true,
124-
"outputDir": "glue_jupyterlab/labextension",
125-
"sharedPackages": {
126-
"yjs": {
127-
"bundled": false,
128-
"singleton": true
129-
},
130-
"yjs-widgets": {
131-
"bundled": false,
132-
"singleton": true
133-
}
58+
"dependencies": {
59+
"@jupyter/docprovider": "^1.0.0-alpha.8",
60+
"@jupyter/ydoc": "^1.0.2",
61+
"@jupyterlab/application": "^4.0.0",
62+
"@jupyterlab/apputils": "^4.0.0",
63+
"@jupyterlab/coreutils": "^6.0.0",
64+
"@jupyterlab/docregistry": "^4.0.0",
65+
"@jupyterlab/launcher": "^4.0.2",
66+
"@jupyterlab/mainmenu": "^4.0.0",
67+
"@jupyterlab/notebook": "^4.0.0",
68+
"@jupyterlab/observables": "^5.0.0",
69+
"@jupyterlab/rendermime": "^4.0.0",
70+
"@jupyterlab/services": "^7.0.0",
71+
"@jupyterlab/ui-components": "^4.0.0",
72+
"@lumino/algorithm": "^2.0.0",
73+
"@lumino/commands": "^2.1.0",
74+
"@lumino/coreutils": "^2.1.0",
75+
"@lumino/disposable": "^2.1.0",
76+
"@lumino/messaging": "^2.0.0",
77+
"@lumino/signaling": "^2.1.0",
78+
"@lumino/widgets": "^2.1.0",
79+
"gridstack": "^6.0.1",
80+
"yjs-widgets": "^0.3.3"
81+
},
82+
"devDependencies": {
83+
"@jupyterlab/builder": "^4.0.0",
84+
"@jupyterlab/testutils": "^4.0.0",
85+
"@types/jest": "^29.2.0",
86+
"@typescript-eslint/eslint-plugin": "^4.8.1",
87+
"@typescript-eslint/parser": "^4.8.1",
88+
"eslint": "^7.14.0",
89+
"eslint-config-prettier": "^6.15.0",
90+
"eslint-plugin-prettier": "^3.1.4",
91+
"jest": "^29.5.0",
92+
"json-schema-to-typescript": "^10.1.5",
93+
"mkdirp": "^1.0.3",
94+
"npm-run-all": "^4.1.5",
95+
"prettier": "^2.1.1",
96+
"rimraf": "^3.0.2",
97+
"stylelint": "^14.3.0",
98+
"stylelint-config-prettier": "^9.0.4",
99+
"stylelint-config-recommended": "^6.0.0",
100+
"stylelint-config-standard": "~24.0.0",
101+
"stylelint-prettier": "^2.0.0",
102+
"typescript": "~5.0.4"
103+
},
104+
"sideEffects": [
105+
"style/*.css",
106+
"style/index.js"
107+
],
108+
"styleModule": "style/index.js",
109+
"publishConfig": {
110+
"access": "public"
111+
},
112+
"jupyterlab": {
113+
"discovery": {
114+
"server": {
115+
"managers": [
116+
"pip"
117+
],
118+
"base": {
119+
"name": "glue-jupyterlab"
120+
}
121+
}
122+
},
123+
"extension": true,
124+
"outputDir": "glue_jupyterlab/labextension",
125+
"sharedPackages": {
126+
"yjs": {
127+
"bundled": false,
128+
"singleton": true
129+
},
130+
"yjs-widgets": {
131+
"bundled": false,
132+
"singleton": true
133+
}
134+
}
134135
}
135-
}
136136
}

0 commit comments

Comments
 (0)