Skip to content

Commit

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

jupyterlab-blockly-ipylgbst-0.1.0.tgz: 5b82f8c40276ebbe23e386b4044512a10d92cbf98b2716beb731e62f13a97ffc

jupyterlab_blockly_ipylgbst-0.1.0-py3-none-any.whl: b745557a64679c96f48c355f27d2193e11426a296457383a97b4bc3ceb8cb8de

jupyterlab_blockly_ipylgbst-0.1.0.tar.gz: be43d3ac9d38e8300eba97335abd79a7bc01b133a78cde2c964593598ce061f8
  • Loading branch information
DenisaCG committed Aug 22, 2024
1 parent 9a97c0b commit 5074c3d
Show file tree
Hide file tree
Showing 2 changed files with 191 additions and 167 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,28 @@

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

## 0.1.0

([Full Changelog](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/compare/bbebe6f55843817cabe84887743cc6f8c8d15fcc...9a97c0bd8723e93320869727223e4e29ea97c08d))

### Enhancements made

- Upgrade to `v0.3.2` of `jupyterlab-blockly` [#4](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/pull/4) ([@DenisaCG](https://github.com/DenisaCG))
- Registering a new toolbox and adding the `ipylgbst` blocks [#2](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/pull/2) ([@DenisaCG](https://github.com/DenisaCG))
- Add `jupyterlab-blockly` [#1](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/pull/1) ([@DenisaCG](https://github.com/DenisaCG))

### Bugs fixed

- Change `package.json` version [#6](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/pull/6) ([@DenisaCG](https://github.com/DenisaCG))

### Maintenance and upkeep improvements

- Update repository links for new organisation [#5](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/pull/5) ([@DenisaCG](https://github.com/DenisaCG))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/graphs/contributors?from=2023-04-24&to=2024-08-22&type=c))

[@DenisaCG](https://github.com/search?q=repo%3Ajupyter-robotics%2Fjupyterlab-blockly-ipylgbst+involves%3ADenisaCG+updated%3A2023-04-24..2024-08-22&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyter-robotics%2Fjupyterlab-blockly-ipylgbst+involves%3Agithub-actions+updated%3A2023-04-24..2024-08-22&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->
334 changes: 167 additions & 167 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,175 +1,175 @@
{
"name": "jupyterlab-blockly-ipylgbst",
"version": "0.1.0-a0",
"description": "Blockly extension for JupyterLab to control the Lego Boost, using the ipylgbst library.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"ipylgbst",
"Lego Boost",
"robot"
],
"homepage": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst",
"bugs": {
"url": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Denisa Checiu",
"email": "[email protected]"
},
"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/jupyter-robotics/jupyterlab-blockly-ipylgbst.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 jupyterlab_blockly_ipylgbst/labextension jupyterlab_blockly_ipylgbst/_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\"",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w --sourceMap",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^4.2",
"blockly": "^11.0",
"jupyterlab-blockly": "^0.3.2"
},
"devDependencies": {
"@jupyterlab/builder": "^4.2.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.1",
"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": "~5.0.2"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "jupyterlab_blockly_ipylgbst/labextension",
"webpackConfig": "./webpack.config.js"
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage",
"**/*.d.ts",
"examples"
],
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
"name": "jupyterlab-blockly-ipylgbst",
"version": "0.1.0",
"description": "Blockly extension for JupyterLab to control the Lego Boost, using the ipylgbst library.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"ipylgbst",
"Lego Boost",
"robot"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
"homepage": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst",
"bugs": {
"url": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/issues"
},
"plugins": [
"@typescript-eslint"
"license": "BSD-3-Clause",
"author": {
"name": "Denisa Checiu",
"email": "[email protected]"
},
"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/jupyter-robotics/jupyterlab-blockly-ipylgbst.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 jupyterlab_blockly_ipylgbst/labextension jupyterlab_blockly_ipylgbst/_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\"",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w --sourceMap",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^4.2",
"blockly": "^11.0",
"jupyterlab-blockly": "^0.3.2"
},
"devDependencies": {
"@jupyterlab/builder": "^4.2.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.1",
"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": "~5.0.2"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "jupyterlab_blockly_ipylgbst/labextension",
"webpackConfig": "./webpack.config.js"
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage",
"**/*.d.ts",
"examples"
],
"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
}
}
}

0 comments on commit 5074c3d

Please sign in to comment.