From ff3c11e4820e10eab389321404102ed34f3ad0c2 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 3 Aug 2023 13:46:38 +0000 Subject: [PATCH] Revert "Publish 4.0.0" This reverts commit 7825d8f95c398cedda408a65c140adcf1ac7f7b9. --- CHANGELOG.md | 16 ---- package.json | 258 +++++++++++++++++++++++++-------------------------- 2 files changed, 129 insertions(+), 145 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12d0a33..6e74432 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,22 +2,6 @@ -## 4.0.0 - -([Full Changelog](https://github.com/jupyterlab/jupyterlab-github/compare/v3.0.1...fcb398305c2d8174256078cb4cca1fd7c5bb6e69)) - -### Maintenance and upkeep improvements - -- Rename default branch to `main` [#148](https://github.com/jupyterlab/jupyterlab-github/pull/148) ([@jtpio](https://github.com/jtpio)) -- Upgrade extension to JupyterLab 4 [#145](https://github.com/jupyterlab/jupyterlab-github/pull/145) ([@mahendrapaipuri](https://github.com/mahendrapaipuri)) -- Optional ILayoutRestorer [#128](https://github.com/jupyterlab/jupyterlab-github/pull/128) ([@jtpio](https://github.com/jtpio)) - -### Contributors to this release - -([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab-github/graphs/contributors?from=2021-11-27&to=2023-08-03&type=c)) - -[@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab-github+involves%3Agithub-actions+updated%3A2021-11-27..2023-08-03&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab-github+involves%3Ajtpio+updated%3A2021-11-27..2023-08-03&type=Issues) | [@mahendrapaipuri](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab-github+involves%3Amahendrapaipuri+updated%3A2021-11-27..2023-08-03&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab-github+involves%3Awelcome+updated%3A2021-11-27..2023-08-03&type=Issues) - ## v3.0.1 diff --git a/package.json b/package.json index 4603908..98c0d71 100644 --- a/package.json +++ b/package.json @@ -1,132 +1,132 @@ { - "name": "@jupyterlab/github", - "version": "4.0.0", - "description": "JupyterLab viewer for GitHub repositories", - "keywords": [ - "github", - "jupyter", - "jupyterlab", - "jupyterlab-extension" - ], - "homepage": "https://github.com/jupyterlab/jupyterlab-github", - "bugs": { - "url": "https://github.com/jupyterlab/jupyterlab-github/issues" + "name": "@jupyterlab/github", + "version": "3.0.1", + "description": "JupyterLab viewer for GitHub repositories", + "keywords": [ + "github", + "jupyter", + "jupyterlab", + "jupyterlab-extension" + ], + "homepage": "https://github.com/jupyterlab/jupyterlab-github", + "bugs": { + "url": "https://github.com/jupyterlab/jupyterlab-github/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/jupyterlab/jupyterlab-github.git" + }, + "license": "BSD-3-Clause", + "author": { + "name": "Ian Rose", + "email": "jupyter@googlegroups.com" + }, + "files": [ + "lib/*/*d.ts", + "lib/*/*.js", + "lib/*.d.ts", + "lib/*.js", + "schema/*.json", + "style/*.*", + "style/index.js" + ], + "main": "lib/index.js", + "types": "lib/index.d.ts", + "directories": { + "lib": "lib/" + }, + "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", + "build:test": "cd test && ./build-tests.sh", + "clean": "jlpm run clean:lib", + "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", + "clean:labextension": "rimraf jupyterlab_github/labextension", + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", + "lint": "jlpm && jlpm prettier && jlpm eslint && jlpm stylelint", + "lint:check": "jlpm prettier:check && jlpm eslint:check && jlpm stylelint:check", + "eslint": "eslint . --ext .ts,.tsx --fix", + "eslint:check": "eslint . --ext .ts,.tsx", + "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 .", + "precommit": "lint-staged", + "test": "cd test && ./run-tests.sh", + "watch": "run-p watch:src watch:labextension", + "watch:labextension": "jupyter labextension watch .", + "watch:src": "tsc -w" + }, + "lint-staged": { + "**/*{.ts,.tsx,.css,.json,.md}": [ + "prettier --write", + "git add" + ] + }, + "dependencies": { + "@jupyterlab/application": "^4.0.0", + "@jupyterlab/apputils": "^4.0.0", + "@jupyterlab/coreutils": "^6.0.0", + "@jupyterlab/docmanager": "^4.0.0", + "@jupyterlab/docregistry": "^4.0.0", + "@jupyterlab/filebrowser": "^4.0.0", + "@jupyterlab/services": "^7.0.0", + "@jupyterlab/settingregistry": "^4.0.0", + "@jupyterlab/ui-components": "^4.0.0", + "@lumino/algorithm": "^2.0.0", + "@lumino/messaging": "^2.0.0", + "@lumino/signaling": "^2.0.0", + "@lumino/widgets": "^2.0.0", + "base64-js": "^1.5.0" + }, + "devDependencies": { + "@jupyterlab/builder": "^4.0.0", + "@types/base64-js": "^1.3.0", + "@types/text-encoding": "^0.0.35", + "@typescript-eslint/eslint-plugin": "^5.55.0", + "@typescript-eslint/eslint-plugin-tslint": "^6.1.0", + "@typescript-eslint/parser": "^5.55.0", + "eslint": "^8.36.0", + "eslint-config-prettier": "^8.7.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-no-null": "^1.0.2", + "eslint-plugin-prettier": "^4.2.1", + "husky": "^8.0.0", + "lint-staged": "^13.2.0", + "mkdirp": "^1.0.3", + "npm-run-all": "^4.1.5", + "prettier": "^2.8.7", + "rimraf": "^4.4.1", + "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" + }, + "jupyterlab": { + "extension": true, + "discovery": { + "server": { + "managers": [ + "pip" + ], + "base": { + "name": "jupyterlab_github" + } + } }, - "repository": { - "type": "git", - "url": "https://github.com/jupyterlab/jupyterlab-github.git" - }, - "license": "BSD-3-Clause", - "author": { - "name": "Ian Rose", - "email": "jupyter@googlegroups.com" - }, - "files": [ - "lib/*/*d.ts", - "lib/*/*.js", - "lib/*.d.ts", - "lib/*.js", - "schema/*.json", - "style/*.*", - "style/index.js" - ], - "main": "lib/index.js", - "types": "lib/index.d.ts", - "directories": { - "lib": "lib/" - }, - "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", - "build:test": "cd test && ./build-tests.sh", - "clean": "jlpm run clean:lib", - "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", - "clean:labextension": "rimraf jupyterlab_github/labextension", - "clean:lib": "rimraf lib tsconfig.tsbuildinfo", - "lint": "jlpm && jlpm prettier && jlpm eslint && jlpm stylelint", - "lint:check": "jlpm prettier:check && jlpm eslint:check && jlpm stylelint:check", - "eslint": "eslint . --ext .ts,.tsx --fix", - "eslint:check": "eslint . --ext .ts,.tsx", - "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 .", - "precommit": "lint-staged", - "test": "cd test && ./run-tests.sh", - "watch": "run-p watch:src watch:labextension", - "watch:labextension": "jupyter labextension watch .", - "watch:src": "tsc -w" - }, - "lint-staged": { - "**/*{.ts,.tsx,.css,.json,.md}": [ - "prettier --write", - "git add" - ] - }, - "dependencies": { - "@jupyterlab/application": "^4.0.0", - "@jupyterlab/apputils": "^4.0.0", - "@jupyterlab/coreutils": "^6.0.0", - "@jupyterlab/docmanager": "^4.0.0", - "@jupyterlab/docregistry": "^4.0.0", - "@jupyterlab/filebrowser": "^4.0.0", - "@jupyterlab/services": "^7.0.0", - "@jupyterlab/settingregistry": "^4.0.0", - "@jupyterlab/ui-components": "^4.0.0", - "@lumino/algorithm": "^2.0.0", - "@lumino/messaging": "^2.0.0", - "@lumino/signaling": "^2.0.0", - "@lumino/widgets": "^2.0.0", - "base64-js": "^1.5.0" - }, - "devDependencies": { - "@jupyterlab/builder": "^4.0.0", - "@types/base64-js": "^1.3.0", - "@types/text-encoding": "^0.0.35", - "@typescript-eslint/eslint-plugin": "^5.55.0", - "@typescript-eslint/eslint-plugin-tslint": "^6.1.0", - "@typescript-eslint/parser": "^5.55.0", - "eslint": "^8.36.0", - "eslint-config-prettier": "^8.7.0", - "eslint-plugin-import": "^2.27.5", - "eslint-plugin-no-null": "^1.0.2", - "eslint-plugin-prettier": "^4.2.1", - "husky": "^8.0.0", - "lint-staged": "^13.2.0", - "mkdirp": "^1.0.3", - "npm-run-all": "^4.1.5", - "prettier": "^2.8.7", - "rimraf": "^4.4.1", - "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" - }, - "jupyterlab": { - "extension": true, - "discovery": { - "server": { - "managers": [ - "pip" - ], - "base": { - "name": "jupyterlab_github" - } - } - }, - "schemaDir": "schema", - "outputDir": "jupyterlab_github/labextension" - }, - "sideEffects": [ - "style/*.css", - "style/index.js" - ], - "styleModule": "style/index.js" + "schemaDir": "schema", + "outputDir": "jupyterlab_github/labextension" + }, + "sideEffects": [ + "style/*.css", + "style/index.js" + ], + "styleModule": "style/index.js" }