diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d352af..39b3b74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,4 +2,28 @@ +## 0.1.0 + +([Full Changelog](https://github.com/jupyterlite/litegitpuller/compare/b111f5d0e1682f3ae14d3205fb1d389b408e7753...1b0011799a217759b34705727030c5f515ddc464)) + +### Enhancements made + +- Create the labextension and a first version of the puller [#4](https://github.com/jupyterlite/litegitpuller/pull/4) ([@brichet](https://github.com/brichet)) + +### Maintenance and upkeep improvements + +- Install playwright browser to fix build test [#11](https://github.com/jupyterlite/litegitpuller/pull/11) ([@brichet](https://github.com/brichet)) +- Add Jupyter Releaser workflows [#9](https://github.com/jupyterlite/litegitpuller/pull/9) ([@jtpio](https://github.com/jtpio)) + +### Documentation improvements + +- Fix the test link in documentation [#10](https://github.com/jupyterlite/litegitpuller/pull/10) ([@brichet](https://github.com/brichet)) +- Add documentation with Jupyterlite demo [#8](https://github.com/jupyterlite/litegitpuller/pull/8) ([@brichet](https://github.com/brichet)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlite/litegitpuller/graphs/contributors?from=2023-08-28&to=2023-09-14&type=c)) + +[@brichet](https://github.com/search?q=repo%3Ajupyterlite%2Flitegitpuller+involves%3Abrichet+updated%3A2023-08-28..2023-09-14&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlite%2Flitegitpuller+involves%3Agithub-actions+updated%3A2023-08-28..2023-09-14&type=Issues) | [@jtpio](https://github.com/search?q=repo%3Ajupyterlite%2Flitegitpuller+involves%3Ajtpio+updated%3A2023-08-28..2023-09-14&type=Issues) + diff --git a/package.json b/package.json index 0a26c84..509d7f4 100644 --- a/package.json +++ b/package.json @@ -1,190 +1,190 @@ { - "name": "@jupyterlite/litegitpuller", - "version": "0.0.1", - "description": "A jupyterlite extension to automate cloning of a github repository.", - "keywords": [ - "jupyter", - "jupyterlab", - "jupyterlab-extension" - ], - "homepage": "https://github.com/jupyterlite/litegitpuller", - "bugs": { - "url": "https://github.com/jupyterlite/litegitpuller/issues" - }, - "license": "BSD-3-Clause", - "author": { - "name": "Jupyter Development Team", - "email": "jupyter@googlegroups.com" - }, - "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}" - ], - "main": "lib/index.js", - "types": "lib/index.d.ts", - "style": "style/index.css", - "repository": { - "type": "git", - "url": "https://github.com/jupyterlite/litegitpuller.git" - }, - "scripts": { - "build": "jlpm build:lib && jlpm build:labextension:dev", - "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension", - "build:labextension": "jupyter labextension build .", - "build:labextension:dev": "jupyter labextension build --development True .", - "build:lib": "tsc --sourceMap", - "build:lib:prod": "tsc", - "clean": "jlpm clean:lib", - "clean:lib": "rimraf lib tsconfig.tsbuildinfo", - "clean:lintcache": "rimraf .eslintcache .stylelintcache", - "clean:labextension": "rimraf litegitpuller/labextension litegitpuller/_version.py", - "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/coreutils": "^5.1.0", - "@jupyterlab/filebrowser": "^3.1.0", - "@jupyterlab/services": "^6.1.0" - }, - "devDependencies": { - "@babel/core": "^7.0.0", - "@babel/preset-env": "^7.0.0", - "@jupyterlab/builder": "^3.1.0", - "@jupyterlab/testutils": "^3.0.0", - "@types/jest": "^26.0.0", - "@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", - "npm-run-all": "^4.1.5", - "prettier": "^2.1.1", - "rimraf": "^3.0.2", - "stylelint": "^14.3.0", - "stylelint-config-prettier": "^9.0.4", - "stylelint-config-recommended": "^6.0.0", - "stylelint-config-standard": "~24.0.0", - "stylelint-prettier": "^2.0.0", - "typescript": "~4.1.3", - "ts-jest": "^26.0.0" - }, - "resolutions": { - "@jupyterlab/application": "~3.5.3", - "@jupyterlab/coreutils": "~5.5.3", - "@jupyterlab/docprovider": "~3.5.3", - "@jupyterlab/docregistry": "~3.5.3", - "@jupyterlab/filebrowser": "~3.5.3", - "@jupyterlab/rendermime-interfaces": "~3.5.3", - "@jupyterlab/services": "~6.5.3", - "@lumino/coreutils": "^1.11.0", - "@lumino/widgets": "^1.37.2" - }, - "sideEffects": [ - "style/*.css", - "style/index.js" - ], - "styleModule": "style/index.js", - "publishConfig": { - "access": "public" - }, - "jupyterlab": { - "extension": true, - "outputDir": "litegitpuller/labextension" - }, - "eslintIgnore": [ - "node_modules", - "dist", - "coverage", - "**/*.d.ts", - "tests", - "**/__tests__", - "ui-tests" - ], - "eslintConfig": { - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/eslint-recommended", - "plugin:@typescript-eslint/recommended", - "plugin:prettier/recommended" + "name": "@jupyterlite/litegitpuller", + "version": "0.1.0", + "description": "A jupyterlite extension to automate cloning of a github repository.", + "keywords": [ + "jupyter", + "jupyterlab", + "jupyterlab-extension" ], - "parser": "@typescript-eslint/parser", - "parserOptions": { - "project": "tsconfig.json", - "sourceType": "module" + "homepage": "https://github.com/jupyterlite/litegitpuller", + "bugs": { + "url": "https://github.com/jupyterlite/litegitpuller/issues" }, - "plugins": [ - "@typescript-eslint" + "license": "BSD-3-Clause", + "author": { + "name": "Jupyter Development Team", + "email": "jupyter@googlegroups.com" + }, + "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}" ], - "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", + "style": "style/index.css", + "repository": { + "type": "git", + "url": "https://github.com/jupyterlite/litegitpuller.git" + }, + "scripts": { + "build": "jlpm build:lib && jlpm build:labextension:dev", + "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension", + "build:labextension": "jupyter labextension build .", + "build:labextension:dev": "jupyter labextension build --development True .", + "build:lib": "tsc --sourceMap", + "build:lib:prod": "tsc", + "clean": "jlpm clean:lib", + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", + "clean:lintcache": "rimraf .eslintcache .stylelintcache", + "clean:labextension": "rimraf litegitpuller/labextension litegitpuller/_version.py", + "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/coreutils": "^5.1.0", + "@jupyterlab/filebrowser": "^3.1.0", + "@jupyterlab/services": "^6.1.0" + }, + "devDependencies": { + "@babel/core": "^7.0.0", + "@babel/preset-env": "^7.0.0", + "@jupyterlab/builder": "^3.1.0", + "@jupyterlab/testutils": "^3.0.0", + "@types/jest": "^26.0.0", + "@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", + "npm-run-all": "^4.1.5", + "prettier": "^2.1.1", + "rimraf": "^3.0.2", + "stylelint": "^14.3.0", + "stylelint-config-prettier": "^9.0.4", + "stylelint-config-recommended": "^6.0.0", + "stylelint-config-standard": "~24.0.0", + "stylelint-prettier": "^2.0.0", + "typescript": "~4.1.3", + "ts-jest": "^26.0.0" + }, + "resolutions": { + "@jupyterlab/application": "~3.5.3", + "@jupyterlab/coreutils": "~5.5.3", + "@jupyterlab/docprovider": "~3.5.3", + "@jupyterlab/docregistry": "~3.5.3", + "@jupyterlab/filebrowser": "~3.5.3", + "@jupyterlab/rendermime-interfaces": "~3.5.3", + "@jupyterlab/services": "~6.5.3", + "@lumino/coreutils": "^1.11.0", + "@lumino/widgets": "^1.37.2" + }, + "sideEffects": [ + "style/*.css", + "style/index.js" + ], + "styleModule": "style/index.js", + "publishConfig": { + "access": "public" + }, + "jupyterlab": { + "extension": true, + "outputDir": "litegitpuller/labextension" + }, + "eslintIgnore": [ + "node_modules", + "dist", + "coverage", + "**/*.d.ts", + "tests", + "**/__tests__", + "ui-tests" + ], + "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" + }, + "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 + }, + "prettier": { + "singleQuote": true, + "trailingComma": "none", + "arrowParens": "avoid", + "endOfLine": "auto" + }, + "stylelint": { + "extends": [ + "stylelint-config-recommended", + "stylelint-config-standard", + "stylelint-prettier/recommended" + ], + "rules": { + "property-no-vendor-prefix": null, + "selector-no-vendor-prefix": null, + "value-no-vendor-prefix": null } - ], - "curly": [ - "error", - "all" - ], - "eqeqeq": "error", - "prefer-arrow-callback": "error" - } - }, - "prettier": { - "singleQuote": true, - "trailingComma": "none", - "arrowParens": "avoid", - "endOfLine": "auto" - }, - "stylelint": { - "extends": [ - "stylelint-config-recommended", - "stylelint-config-standard", - "stylelint-prettier/recommended" - ], - "rules": { - "property-no-vendor-prefix": null, - "selector-no-vendor-prefix": null, - "value-no-vendor-prefix": null } - } }