Skip to content

Commit 1096d64

Browse files
committed
Publish 0.1.0
SHA256 hashes: jupyterlab-open-url-parameter-0.1.0.tgz: 21a715ac92444e1ed79414daeee4e94407a2189b3045ea4e13837f512d4bfae8 jupyterlab_open_url_parameter-0.1.0-py3-none-any.whl: 07ec58e68e865896624bba445473796461820ec0165a06fb926e1e8e84a89fc4 jupyterlab_open_url_parameter-0.1.0.tar.gz: 81512b9cf893cdb67873d12a1063a58129d5f9ac0e1d67e0c26f1af68f39784d
1 parent cb8aa69 commit 1096d64

File tree

2 files changed

+105
-86
lines changed

2 files changed

+105
-86
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,23 @@
22

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

5+
## 0.1.0
6+
7+
([Full Changelog](https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter/compare/49b6de109486817ee3abaf253cd2c6f0f04c54cc...cb8aa69ee7e20f413fa93a85c848d03e8640a0a9))
8+
9+
### Maintenance and upkeep improvements
10+
11+
- Reset version to 0.0.1 in preparation for release [#3](https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter/pull/3) ([@jtpio](https://github.com/jtpio))
12+
- Fix CI [#1](https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter/pull/1) ([@jtpio](https://github.com/jtpio))
13+
14+
### Documentation improvements
15+
16+
- Add files for JupyterLite [#2](https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter/pull/2) ([@jtpio](https://github.com/jtpio))
17+
18+
### Contributors to this release
19+
20+
([GitHub contributors page for this release](https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter/graphs/contributors?from=2023-04-06&to=2023-04-06&type=c))
21+
22+
[@github-actions](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyterlab-open-url-parameter+involves%3Agithub-actions+updated%3A2023-04-06..2023-04-06&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab-contrib%2Fjupyterlab-open-url-parameter+involves%3Ajtpio+updated%3A2023-04-06..2023-04-06&type=Issues)
23+
524
<!-- <END NEW CHANGELOG ENTRY> -->

package.json

Lines changed: 86 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -1,88 +1,88 @@
11
{
2-
"name": "jupyterlab-open-url-parameter",
3-
"version": "0.0.1",
4-
"description": "JupyterLab extension to open files passed via a URL parameter",
5-
"keywords": [
6-
"jupyter",
7-
"jupyterlab",
8-
"jupyterlab-extension"
9-
],
10-
"homepage": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter",
11-
"bugs": {
12-
"url": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter/issues"
13-
},
14-
"license": "BSD-3-Clause",
15-
"author": {
16-
"name": "JupyterLab Contrib Team",
17-
"email": ""
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/jupyterlab-contrib/jupyterlab-open-url-parameter.git"
29-
},
30-
"scripts": {
31-
"build": "jlpm build:lib && jlpm build:labextension:dev",
32-
"build:prod": "jlpm clean && 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-
"clean": "jlpm clean:lib",
38-
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
39-
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
40-
"clean:labextension": "rimraf jupyterlab_open_url_parameter/labextension jupyterlab_open_url_parameter/_version.py",
41-
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
42-
"eslint": "jlpm eslint:check --fix",
43-
"eslint:check": "eslint . --cache --ext .ts,.tsx",
44-
"install:extension": "jlpm build",
45-
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
46-
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
47-
"prettier": "jlpm prettier:base --write --list-different",
48-
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
49-
"prettier:check": "jlpm prettier:base --check",
50-
"stylelint": "jlpm stylelint:check --fix",
51-
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
52-
"watch": "run-p watch:src watch:labextension",
53-
"watch:src": "tsc -w",
54-
"watch:labextension": "jupyter labextension watch ."
55-
},
56-
"dependencies": {
57-
"@jupyterlab/application": "^3.1.0"
58-
},
59-
"devDependencies": {
60-
"@jupyterlab/builder": "^3.1.0",
61-
"@typescript-eslint/eslint-plugin": "^4.8.1",
62-
"@typescript-eslint/parser": "^4.8.1",
63-
"eslint": "^7.14.0",
64-
"eslint-config-prettier": "^6.15.0",
65-
"eslint-plugin-prettier": "^3.1.4",
66-
"npm-run-all": "^4.1.5",
67-
"prettier": "^2.1.1",
68-
"rimraf": "^3.0.2",
69-
"stylelint": "^14.3.0",
70-
"stylelint-config-prettier": "^9.0.4",
71-
"stylelint-config-recommended": "^6.0.0",
72-
"stylelint-config-standard": "~24.0.0",
73-
"stylelint-prettier": "^2.0.0",
74-
"typescript": "~4.1.3"
75-
},
76-
"sideEffects": [
77-
"style/*.css",
78-
"style/index.js"
79-
],
80-
"styleModule": "style/index.js",
81-
"publishConfig": {
82-
"access": "public"
83-
},
84-
"jupyterlab": {
85-
"extension": true,
86-
"outputDir": "jupyterlab_open_url_parameter/labextension"
87-
}
2+
"name": "jupyterlab-open-url-parameter",
3+
"version": "0.1.0",
4+
"description": "JupyterLab extension to open files passed via a URL parameter",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension"
9+
],
10+
"homepage": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter",
11+
"bugs": {
12+
"url": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter/issues"
13+
},
14+
"license": "BSD-3-Clause",
15+
"author": {
16+
"name": "JupyterLab Contrib Team",
17+
"email": ""
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/jupyterlab-contrib/jupyterlab-open-url-parameter.git"
29+
},
30+
"scripts": {
31+
"build": "jlpm build:lib && jlpm build:labextension:dev",
32+
"build:prod": "jlpm clean && 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+
"clean": "jlpm clean:lib",
38+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
39+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
40+
"clean:labextension": "rimraf jupyterlab_open_url_parameter/labextension jupyterlab_open_url_parameter/_version.py",
41+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
42+
"eslint": "jlpm eslint:check --fix",
43+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
44+
"install:extension": "jlpm build",
45+
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
46+
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
47+
"prettier": "jlpm prettier:base --write --list-different",
48+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
49+
"prettier:check": "jlpm prettier:base --check",
50+
"stylelint": "jlpm stylelint:check --fix",
51+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
52+
"watch": "run-p watch:src watch:labextension",
53+
"watch:src": "tsc -w",
54+
"watch:labextension": "jupyter labextension watch ."
55+
},
56+
"dependencies": {
57+
"@jupyterlab/application": "^3.1.0"
58+
},
59+
"devDependencies": {
60+
"@jupyterlab/builder": "^3.1.0",
61+
"@typescript-eslint/eslint-plugin": "^4.8.1",
62+
"@typescript-eslint/parser": "^4.8.1",
63+
"eslint": "^7.14.0",
64+
"eslint-config-prettier": "^6.15.0",
65+
"eslint-plugin-prettier": "^3.1.4",
66+
"npm-run-all": "^4.1.5",
67+
"prettier": "^2.1.1",
68+
"rimraf": "^3.0.2",
69+
"stylelint": "^14.3.0",
70+
"stylelint-config-prettier": "^9.0.4",
71+
"stylelint-config-recommended": "^6.0.0",
72+
"stylelint-config-standard": "~24.0.0",
73+
"stylelint-prettier": "^2.0.0",
74+
"typescript": "~4.1.3"
75+
},
76+
"sideEffects": [
77+
"style/*.css",
78+
"style/index.js"
79+
],
80+
"styleModule": "style/index.js",
81+
"publishConfig": {
82+
"access": "public"
83+
},
84+
"jupyterlab": {
85+
"extension": true,
86+
"outputDir": "jupyterlab_open_url_parameter/labextension"
87+
}
8888
}

0 commit comments

Comments
 (0)