Skip to content

Commit 5074c3d

Browse files
committed
Publish 0.1.0
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
1 parent 9a97c0b commit 5074c3d

File tree

2 files changed

+191
-167
lines changed

2 files changed

+191
-167
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,28 @@
22

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

5+
## 0.1.0
6+
7+
([Full Changelog](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/compare/bbebe6f55843817cabe84887743cc6f8c8d15fcc...9a97c0bd8723e93320869727223e4e29ea97c08d))
8+
9+
### Enhancements made
10+
11+
- Upgrade to `v0.3.2` of `jupyterlab-blockly` [#4](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/pull/4) ([@DenisaCG](https://github.com/DenisaCG))
12+
- 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))
13+
- Add `jupyterlab-blockly` [#1](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/pull/1) ([@DenisaCG](https://github.com/DenisaCG))
14+
15+
### Bugs fixed
16+
17+
- Change `package.json` version [#6](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/pull/6) ([@DenisaCG](https://github.com/DenisaCG))
18+
19+
### Maintenance and upkeep improvements
20+
21+
- Update repository links for new organisation [#5](https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/pull/5) ([@DenisaCG](https://github.com/DenisaCG))
22+
23+
### Contributors to this release
24+
25+
([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))
26+
27+
[@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)
28+
529
<!-- <END NEW CHANGELOG ENTRY> -->

package.json

Lines changed: 167 additions & 167 deletions
Original file line numberDiff line numberDiff line change
@@ -1,175 +1,175 @@
11
{
2-
"name": "jupyterlab-blockly-ipylgbst",
3-
"version": "0.1.0-a0",
4-
"description": "Blockly extension for JupyterLab to control the Lego Boost, using the ipylgbst library.",
5-
"keywords": [
6-
"jupyter",
7-
"jupyterlab",
8-
"jupyterlab-extension",
9-
"ipylgbst",
10-
"Lego Boost",
11-
"robot"
12-
],
13-
"homepage": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst",
14-
"bugs": {
15-
"url": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/issues"
16-
},
17-
"license": "BSD-3-Clause",
18-
"author": {
19-
"name": "Denisa Checiu",
20-
"email": "denisa.checiu@quantstack.net"
21-
},
22-
"files": [
23-
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
24-
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
25-
],
26-
"main": "lib/index.js",
27-
"types": "lib/index.d.ts",
28-
"style": "style/index.css",
29-
"repository": {
30-
"type": "git",
31-
"url": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst.git"
32-
},
33-
"scripts": {
34-
"build": "jlpm build:lib && jlpm build:labextension:dev",
35-
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
36-
"build:labextension": "jupyter labextension build .",
37-
"build:labextension:dev": "jupyter labextension build --development True .",
38-
"build:lib": "tsc --sourceMap",
39-
"build:lib:prod": "tsc",
40-
"clean": "jlpm clean:lib",
41-
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
42-
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
43-
"clean:labextension": "rimraf jupyterlab_blockly_ipylgbst/labextension jupyterlab_blockly_ipylgbst/_version.py",
44-
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
45-
"eslint": "jlpm eslint:check --fix",
46-
"eslint:check": "eslint . --cache --ext .ts,.tsx",
47-
"install:extension": "jlpm build",
48-
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
49-
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
50-
"prettier": "jlpm prettier:base --write --list-different",
51-
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
52-
"prettier:check": "jlpm prettier:base --check",
53-
"stylelint": "jlpm stylelint:check --fix",
54-
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
55-
"watch": "run-p watch:src watch:labextension",
56-
"watch:src": "tsc -w --sourceMap",
57-
"watch:labextension": "jupyter labextension watch ."
58-
},
59-
"dependencies": {
60-
"@jupyterlab/application": "^4.2",
61-
"blockly": "^11.0",
62-
"jupyterlab-blockly": "^0.3.2"
63-
},
64-
"devDependencies": {
65-
"@jupyterlab/builder": "^4.2.4",
66-
"@typescript-eslint/eslint-plugin": "^5.12.1",
67-
"@typescript-eslint/parser": "^5.12.1",
68-
"eslint": "^8.9.0",
69-
"eslint-config-prettier": "^8.4.0",
70-
"eslint-plugin-prettier": "^4.0.0",
71-
"eslint-plugin-react": "^7.30.0",
72-
"npm-run-all": "^4.1.5",
73-
"prettier": "^2.5.1",
74-
"rimraf": "^3.0.2",
75-
"source-map-loader": "^4.0.1",
76-
"stylelint": "^14.3.0",
77-
"stylelint-config-prettier": "^9.0.4",
78-
"stylelint-config-recommended": "^6.0.0",
79-
"stylelint-config-standard": "~24.0.0",
80-
"stylelint-prettier": "^2.0.0",
81-
"typescript": "~5.0.2"
82-
},
83-
"sideEffects": [
84-
"style/*.css",
85-
"style/index.js"
86-
],
87-
"styleModule": "style/index.js",
88-
"publishConfig": {
89-
"access": "public"
90-
},
91-
"jupyterlab": {
92-
"extension": true,
93-
"outputDir": "jupyterlab_blockly_ipylgbst/labextension",
94-
"webpackConfig": "./webpack.config.js"
95-
},
96-
"eslintIgnore": [
97-
"node_modules",
98-
"dist",
99-
"coverage",
100-
"**/*.d.ts",
101-
"examples"
102-
],
103-
"eslintConfig": {
104-
"extends": [
105-
"eslint:recommended",
106-
"plugin:@typescript-eslint/eslint-recommended",
107-
"plugin:@typescript-eslint/recommended",
108-
"plugin:prettier/recommended"
2+
"name": "jupyterlab-blockly-ipylgbst",
3+
"version": "0.1.0",
4+
"description": "Blockly extension for JupyterLab to control the Lego Boost, using the ipylgbst library.",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension",
9+
"ipylgbst",
10+
"Lego Boost",
11+
"robot"
10912
],
110-
"parser": "@typescript-eslint/parser",
111-
"parserOptions": {
112-
"project": "tsconfig.json",
113-
"sourceType": "module"
13+
"homepage": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst",
14+
"bugs": {
15+
"url": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst/issues"
11416
},
115-
"plugins": [
116-
"@typescript-eslint"
17+
"license": "BSD-3-Clause",
18+
"author": {
19+
"name": "Denisa Checiu",
20+
"email": "denisa.checiu@quantstack.net"
21+
},
22+
"files": [
23+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
24+
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
11725
],
118-
"rules": {
119-
"@typescript-eslint/naming-convention": [
120-
"error",
121-
{
122-
"selector": "interface",
123-
"format": [
124-
"PascalCase"
125-
],
126-
"custom": {
127-
"regex": "^I[A-Z]",
128-
"match": true
129-
}
130-
}
131-
],
132-
"@typescript-eslint/no-unused-vars": [
133-
"warn",
134-
{
135-
"args": "none"
26+
"main": "lib/index.js",
27+
"types": "lib/index.d.ts",
28+
"style": "style/index.css",
29+
"repository": {
30+
"type": "git",
31+
"url": "https://github.com/jupyter-robotics/jupyterlab-blockly-ipylgbst.git"
32+
},
33+
"scripts": {
34+
"build": "jlpm build:lib && jlpm build:labextension:dev",
35+
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
36+
"build:labextension": "jupyter labextension build .",
37+
"build:labextension:dev": "jupyter labextension build --development True .",
38+
"build:lib": "tsc --sourceMap",
39+
"build:lib:prod": "tsc",
40+
"clean": "jlpm clean:lib",
41+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
42+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
43+
"clean:labextension": "rimraf jupyterlab_blockly_ipylgbst/labextension jupyterlab_blockly_ipylgbst/_version.py",
44+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
45+
"eslint": "jlpm eslint:check --fix",
46+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
47+
"install:extension": "jlpm build",
48+
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
49+
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
50+
"prettier": "jlpm prettier:base --write --list-different",
51+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
52+
"prettier:check": "jlpm prettier:base --check",
53+
"stylelint": "jlpm stylelint:check --fix",
54+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
55+
"watch": "run-p watch:src watch:labextension",
56+
"watch:src": "tsc -w --sourceMap",
57+
"watch:labextension": "jupyter labextension watch ."
58+
},
59+
"dependencies": {
60+
"@jupyterlab/application": "^4.2",
61+
"blockly": "^11.0",
62+
"jupyterlab-blockly": "^0.3.2"
63+
},
64+
"devDependencies": {
65+
"@jupyterlab/builder": "^4.2.4",
66+
"@typescript-eslint/eslint-plugin": "^5.12.1",
67+
"@typescript-eslint/parser": "^5.12.1",
68+
"eslint": "^8.9.0",
69+
"eslint-config-prettier": "^8.4.0",
70+
"eslint-plugin-prettier": "^4.0.0",
71+
"eslint-plugin-react": "^7.30.0",
72+
"npm-run-all": "^4.1.5",
73+
"prettier": "^2.5.1",
74+
"rimraf": "^3.0.2",
75+
"source-map-loader": "^4.0.1",
76+
"stylelint": "^14.3.0",
77+
"stylelint-config-prettier": "^9.0.4",
78+
"stylelint-config-recommended": "^6.0.0",
79+
"stylelint-config-standard": "~24.0.0",
80+
"stylelint-prettier": "^2.0.0",
81+
"typescript": "~5.0.2"
82+
},
83+
"sideEffects": [
84+
"style/*.css",
85+
"style/index.js"
86+
],
87+
"styleModule": "style/index.js",
88+
"publishConfig": {
89+
"access": "public"
90+
},
91+
"jupyterlab": {
92+
"extension": true,
93+
"outputDir": "jupyterlab_blockly_ipylgbst/labextension",
94+
"webpackConfig": "./webpack.config.js"
95+
},
96+
"eslintIgnore": [
97+
"node_modules",
98+
"dist",
99+
"coverage",
100+
"**/*.d.ts",
101+
"examples"
102+
],
103+
"eslintConfig": {
104+
"extends": [
105+
"eslint:recommended",
106+
"plugin:@typescript-eslint/eslint-recommended",
107+
"plugin:@typescript-eslint/recommended",
108+
"plugin:prettier/recommended"
109+
],
110+
"parser": "@typescript-eslint/parser",
111+
"parserOptions": {
112+
"project": "tsconfig.json",
113+
"sourceType": "module"
114+
},
115+
"plugins": [
116+
"@typescript-eslint"
117+
],
118+
"rules": {
119+
"@typescript-eslint/naming-convention": [
120+
"error",
121+
{
122+
"selector": "interface",
123+
"format": [
124+
"PascalCase"
125+
],
126+
"custom": {
127+
"regex": "^I[A-Z]",
128+
"match": true
129+
}
130+
}
131+
],
132+
"@typescript-eslint/no-unused-vars": [
133+
"warn",
134+
{
135+
"args": "none"
136+
}
137+
],
138+
"@typescript-eslint/no-explicit-any": "off",
139+
"@typescript-eslint/no-namespace": "off",
140+
"@typescript-eslint/no-use-before-define": "off",
141+
"@typescript-eslint/quotes": [
142+
"error",
143+
"single",
144+
{
145+
"avoidEscape": true,
146+
"allowTemplateLiterals": false
147+
}
148+
],
149+
"curly": [
150+
"error",
151+
"all"
152+
],
153+
"eqeqeq": "error",
154+
"prefer-arrow-callback": "error"
136155
}
137-
],
138-
"@typescript-eslint/no-explicit-any": "off",
139-
"@typescript-eslint/no-namespace": "off",
140-
"@typescript-eslint/no-use-before-define": "off",
141-
"@typescript-eslint/quotes": [
142-
"error",
143-
"single",
144-
{
145-
"avoidEscape": true,
146-
"allowTemplateLiterals": false
156+
},
157+
"prettier": {
158+
"singleQuote": true,
159+
"trailingComma": "none",
160+
"arrowParens": "avoid",
161+
"endOfLine": "auto"
162+
},
163+
"stylelint": {
164+
"extends": [
165+
"stylelint-config-recommended",
166+
"stylelint-config-standard",
167+
"stylelint-prettier/recommended"
168+
],
169+
"rules": {
170+
"property-no-vendor-prefix": null,
171+
"selector-no-vendor-prefix": null,
172+
"value-no-vendor-prefix": null
147173
}
148-
],
149-
"curly": [
150-
"error",
151-
"all"
152-
],
153-
"eqeqeq": "error",
154-
"prefer-arrow-callback": "error"
155-
}
156-
},
157-
"prettier": {
158-
"singleQuote": true,
159-
"trailingComma": "none",
160-
"arrowParens": "avoid",
161-
"endOfLine": "auto"
162-
},
163-
"stylelint": {
164-
"extends": [
165-
"stylelint-config-recommended",
166-
"stylelint-config-standard",
167-
"stylelint-prettier/recommended"
168-
],
169-
"rules": {
170-
"property-no-vendor-prefix": null,
171-
"selector-no-vendor-prefix": null,
172-
"value-no-vendor-prefix": null
173174
}
174-
}
175175
}

0 commit comments

Comments
 (0)