Skip to content

Commit

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

jupyterlab-benchmarks-ui-profiler-0.1.4.tgz: 675bab7340fba0fa689bb5e006048e1e44261637a69fab14899ac97bf297c073

jupyterlab_ui_profiler-0.1.4-py3-none-any.whl: fdf2cf06976e7a5d224c81f8c3b7a1c9d0ff60532510271977fea8b7bfa4b52c

jupyterlab_ui_profiler-0.1.4.tar.gz: 7bee3ceead67859c5b8b7acc8efb6cbbe718050a50c375d1fa328681c8fe46cc
  • Loading branch information
krassowski committed Dec 18, 2022
1 parent f2b4a44 commit 4a7c09f
Show file tree
Hide file tree
Showing 2 changed files with 139 additions and 107 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,36 @@

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

## 0.1.4

([Full Changelog](https://github.com/jupyterlab/ui-profiler/compare/v0.1.3...f2b4a4443b5fff366359abc6a293274829e81491))

### Enhancements made

- Implement simple time measurement benchmark [#1](https://github.com/jupyterlab/ui-profiler/pull/1) ([@krassowski](https://github.com/krassowski))

### Bugs fixed

- Fix re-opening of main area widget [#3](https://github.com/jupyterlab/ui-profiler/pull/3) ([@krassowski](https://github.com/krassowski))
- Fix form data loss on change of benchmarks/scenarios [#2](https://github.com/jupyterlab/ui-profiler/pull/2) ([@krassowski](https://github.com/krassowski))

### Maintenance and upkeep improvements

- Add missing `test:update` [#11](https://github.com/jupyterlab/ui-profiler/pull/11) ([@krassowski](https://github.com/krassowski))
- Second attempt to fix galata action [#10](https://github.com/jupyterlab/ui-profiler/pull/10) ([@krassowski](https://github.com/krassowski))
- Install jupyterlab for playwright update [#9](https://github.com/jupyterlab/ui-profiler/pull/9) ([@krassowski](https://github.com/krassowski))
- Add yarn.lock [#7](https://github.com/jupyterlab/ui-profiler/pull/7) ([@krassowski](https://github.com/krassowski))
- Add enforce-label check [#6](https://github.com/jupyterlab/ui-profiler/pull/6) ([@krassowski](https://github.com/krassowski))
- Fix jupyter-releaser CI check by moving hooks to `pyproject.toml` [#5](https://github.com/jupyterlab/ui-profiler/pull/5) ([@krassowski](https://github.com/krassowski))

### Documentation improvements

- User-facing documentation [#8](https://github.com/jupyterlab/ui-profiler/pull/8) ([@krassowski](https://github.com/krassowski))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyterlab/ui-profiler/graphs/contributors?from=2022-12-06&to=2022-12-18&type=c))

[@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fui-profiler+involves%3Agithub-actions+updated%3A2022-12-06..2022-12-18&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fui-profiler+involves%3Akrassowski+updated%3A2022-12-06..2022-12-18&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->
214 changes: 107 additions & 107 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,111 +1,111 @@
{
"name": "@jupyterlab-benchmarks/ui-profiler",
"version": "0.1.3",
"description": "JupyterLab extension for profiling UI performance",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/ui-profiler",
"bugs": {
"url": "https://github.com/jupyterlab/ui-profiler/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Project Jupyter Contributors",
"email": ""
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"schema/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/ui-profiler.git"
},
"scripts": {
"build": "jlpm build:lib && jlpm build:labextension:dev",
"build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "jlpm build:schema && tsc",
"build:schema": "find -path './src/schema/*.json' | grep -Po 'schema/\\K[^/]*?(?=.json)' | xargs -I % sh -c 'json2ts src/schema/%.json | prettier --stdin-filepath _%.d.ts > src/types/_%.ts'",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
"clean:labextension": "rimraf jupyterlab-ui-profiler/labextension",
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --cache --ext .ts,.tsx",
"install:extension": "jlpm build",
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
"lint:check": "jlpm stylelint: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",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
"test": "jest --coverage",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^3.1.0",
"@jupyterlab/json-extension": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@jupyterlab/apputils": "^3.1.0",
"@jupyterlab/builder": "^3.1.0",
"@jupyterlab/filebrowser": "^3.5.0",
"@jupyterlab/launcher": "^3.1.0",
"@jupyterlab/testutils": "^3.0.0",
"@lumino/datagrid": "^0.36.4",
"@lumino/widgets": "^1.34.1",
"@rjsf/core": "^3.0.0",
"@types/jest": "^26.0.0",
"@types/json-schema": "^7.0.7",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.0.0",
"json-schema-to-typescript": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "~24.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^26.0.0",
"typescript": "~4.2.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "jupyterlab_ui_profiler/labextension",
"sharedPackages": {
"@lumino/datagrid": {
"singleton": true,
"bundled": false
"name": "@jupyterlab-benchmarks/ui-profiler",
"version": "0.1.4",
"description": "JupyterLab extension for profiling UI performance",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/ui-profiler",
"bugs": {
"url": "https://github.com/jupyterlab/ui-profiler/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Project Jupyter Contributors",
"email": ""
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"schema/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/ui-profiler.git"
},
"scripts": {
"build": "jlpm build:lib && jlpm build:labextension:dev",
"build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "jlpm build:schema && tsc",
"build:schema": "find -path './src/schema/*.json' | grep -Po 'schema/\\K[^/]*?(?=.json)' | xargs -I % sh -c 'json2ts src/schema/%.json | prettier --stdin-filepath _%.d.ts > src/types/_%.ts'",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
"clean:labextension": "rimraf jupyterlab-ui-profiler/labextension",
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --cache --ext .ts,.tsx",
"install:extension": "jlpm build",
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
"lint:check": "jlpm stylelint: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",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
"test": "jest --coverage",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^3.1.0",
"@jupyterlab/json-extension": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@jupyterlab/apputils": "^3.1.0",
"@jupyterlab/builder": "^3.1.0",
"@jupyterlab/filebrowser": "^3.5.0",
"@jupyterlab/launcher": "^3.1.0",
"@jupyterlab/testutils": "^3.0.0",
"@lumino/datagrid": "^0.36.4",
"@lumino/widgets": "^1.34.1",
"@rjsf/core": "^3.0.0",
"@types/jest": "^26.0.0",
"@types/json-schema": "^7.0.7",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.0.0",
"json-schema-to-typescript": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "~24.0.0",
"stylelint-prettier": "^2.0.0",
"ts-jest": "^26.0.0",
"typescript": "~4.2.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "jupyterlab_ui_profiler/labextension",
"sharedPackages": {
"@lumino/datagrid": {
"singleton": true,
"bundled": false
}
}
}
}
}

0 comments on commit 4a7c09f

Please sign in to comment.