Skip to content

Commit

Permalink
[ci skip] Publish 1.0.0
Browse files Browse the repository at this point in the history
SHA256 hashes:

jupyter_power_usage-1.0.0-py3-none-any.whl: 322a6b118092427b65b012da2a8513ad9bd210d945ca8d4ef3a6d9d5302045df

jupyter_power_usage-1.0.0.tar.gz: 9994eb8669b79ee8f50a488652922f16e145441231c50cc48e40a5102fd7acf3

mahendrapaipuri-jupyter-power-usage-1.0.0.tgz: 8c743800a6d642c1f95d56635caa17cb92e15ba5aae2d4cc2e3597d1d6c8525b
  • Loading branch information
mahendrapaipuri committed Oct 12, 2023
1 parent 62b1ee6 commit de4185a
Show file tree
Hide file tree
Showing 2 changed files with 191 additions and 173 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

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

## 1.0.0

([Full Changelog](https://github.com/mahendrapaipuri/jupyter-power-usage/compare/v0.1.1...62b1ee6d0ed0a662330c0156807b07e493eeb85a))

### Enhancements made

- Upgrade to JupyterLab 4 [#4](https://github.com/mahendrapaipuri/jupyter-power-usage/pull/4) ([@mahendrapaipuri](https://github.com/mahendrapaipuri))

### Maintenance and upkeep improvements

- Upgrade to JupyterLab 4 [#4](https://github.com/mahendrapaipuri/jupyter-power-usage/pull/4) ([@mahendrapaipuri](https://github.com/mahendrapaipuri))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/mahendrapaipuri/jupyter-power-usage/graphs/contributors?from=2023-10-12&to=2023-10-12&type=c))

[@mahendrapaipuri](https://github.com/search?q=repo%3Amahendrapaipuri%2Fjupyter-power-usage+involves%3Amahendrapaipuri+updated%3A2023-10-12..2023-10-12&type=Issues)

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

## 0.1.1

([Full Changelog](https://github.com/mahendrapaipuri/jupyter-power-usage/compare/3b718a62b80160933904e991b2ebde25598434a5...d8fc444ef94e53dab89ce84192927d215558a82e))
Expand All @@ -16,5 +36,3 @@
([GitHub contributors page for this release](https://github.com/mahendrapaipuri/jupyter-power-usage/graphs/contributors?from=2023-10-01&to=2023-10-12&type=c))

[@mahendrapaipuri](https://github.com/search?q=repo%3Amahendrapaipuri%2Fjupyter-power-usage+involves%3Amahendrapaipuri+updated%3A2023-10-01..2023-10-12&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->
342 changes: 171 additions & 171 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,178 +1,178 @@
{
"name": "@mahendrapaipuri/jupyter-power-usage",
"version": "0.1.1",
"description": "Extension that shows system power usage",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/mahendrapaipuri/jupyter-power-usage",
"bugs": {
"url": "https://github.com/mahendrapaipuri/jupyter-power-usage/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Mahendra Paipuri",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mahendrapaipuri/jupyter-power-usage.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyter_power_usage/labextension jupyter_power_usage/_version.py",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"lint": "jlpm run eslint && jlpm run prettier && jlpm stylelint",
"lint:check": "jlpm run eslint:check && jlpm run prettier:check && jlpm stylelint:check",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
"stylelint:files": "stylelint --fix",
"install:extension": "jupyter labextension develop --overwrite .",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^4.0.0",
"@lumino/coreutils": "^2.0.0",
"@lumino/polling": "^2.0.0",
"@lumino/signaling": "^2.0.0",
"@lumino/widgets": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-sparklines": "^1.7.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@types/react": "18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-sparklines": "^1.7.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "~5.0.1"
},
"resolutions": {
"@types/react": "18.2.0"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyter_power_usage/labextension"
},
"styleModule": "style/index.js",
"eslintIgnore": [
"**/*.d.ts",
"dist",
"*node_modules*",
"coverage",
"tests",
"venv",
".venv"
],
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
"name": "@mahendrapaipuri/jupyter-power-usage",
"version": "1.0.0",
"description": "Extension that shows system power usage",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module",
"tsconfigRootDir": "."
"homepage": "https://github.com/mahendrapaipuri/jupyter-power-usage",
"bugs": {
"url": "https://github.com/mahendrapaipuri/jupyter-power-usage/issues"
},
"plugins": [
"@typescript-eslint"
"license": "Apache-2.0",
"author": {
"name": "Mahendra Paipuri",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"style/index.js"
],
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "interface",
"format": [
"PascalCase"
],
"custom": {
"regex": "^I[A-Z]",
"match": true
}
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "none"
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mahendrapaipuri/jupyter-power-usage.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyter_power_usage/labextension jupyter_power_usage/_version.py",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"lint": "jlpm run eslint && jlpm run prettier && jlpm stylelint",
"lint:check": "jlpm run eslint:check && jlpm run prettier:check && jlpm stylelint:check",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
"stylelint:files": "stylelint --fix",
"install:extension": "jupyter labextension develop --overwrite .",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^4.0.0",
"@lumino/coreutils": "^2.0.0",
"@lumino/polling": "^2.0.0",
"@lumino/signaling": "^2.0.0",
"@lumino/widgets": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-sparklines": "^1.7.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@types/react": "18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-sparklines": "^1.7.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "~5.0.1"
},
"resolutions": {
"@types/react": "18.2.0"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyter_power_usage/labextension"
},
"styleModule": "style/index.js",
"eslintIgnore": [
"**/*.d.ts",
"dist",
"*node_modules*",
"coverage",
"tests",
"venv",
".venv"
],
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module",
"tsconfigRootDir": "."
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "interface",
"format": [
"PascalCase"
],
"custom": {
"regex": "^I[A-Z]",
"match": true
}
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "none"
}
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": false
}
],
"curly": [
"error",
"all"
],
"eqeqeq": "error",
"prefer-arrow-callback": "error"
}
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/quotes": [
"error",
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": false
},
"stylelint": {
"extends": [
"stylelint-config-recommended",
"stylelint-config-standard",
"stylelint-prettier/recommended"
],
"rules": {
"no-empty-source": null,
"selector-class-pattern": null,
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"value-no-vendor-prefix": null
}
],
"curly": [
"error",
"all"
],
"eqeqeq": "error",
"prefer-arrow-callback": "error"
}
},
"stylelint": {
"extends": [
"stylelint-config-recommended",
"stylelint-config-standard",
"stylelint-prettier/recommended"
],
"rules": {
"no-empty-source": null,
"selector-class-pattern": null,
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"value-no-vendor-prefix": null
}
},
"//": [
"These are comments that will survive: https://groups.google.com/g/nodejs/c/NmL7jdeuw0M/m/yTqI05DRQrIJ?pli=1",
"Fix @types/react version. Else it will pull different versions for different packages and emit duplicating types errors"
]
},
"//": [
"These are comments that will survive: https://groups.google.com/g/nodejs/c/NmL7jdeuw0M/m/yTqI05DRQrIJ?pli=1",
"Fix @types/react version. Else it will pull different versions for different packages and emit duplicating types errors"
]
}

0 comments on commit de4185a

Please sign in to comment.