Skip to content

Commit eb5f3bf

Browse files
committed
Publish 0.3.0a0
SHA256 hashes: jupyterlite-javascript-kernel-0.3.0-alpha.0.tgz: dde3857c7a30dfb56e2660f414c168d564e16f988dff734815934bc83994f664 jupyterlite-javascript-kernel-extension-0.3.0-alpha.0.tgz: e15006f1fed8b18371892d9a4ebc4a3b3d903ad1e0ea436b9d196885f0518e69 jupyterlite_javascript_kernel-0.3.0a0-py3-none-any.whl: 0e0ad5143be468008acc3ea1c9975d2e795c4c3bb3636d1bed2aa4ffd8ab9683 jupyterlite_javascript_kernel-0.3.0a0.tar.gz: 298bba09990405c999946d70178b74958cfa0eb902f2799e30c9bd3c515c5186
1 parent 535e97b commit eb5f3bf

File tree

5 files changed

+148
-127
lines changed

5 files changed

+148
-127
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

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

5+
## 0.3.0a0
6+
7+
([Full Changelog](https://github.com/jupyterlite/javascript-kernel/compare/123a40c18f04b8aa22a86f2352366153e8ed1706...535e97b683a0fa127a936fbe07e05345794a3674))
8+
9+
### Maintenance and upkeep improvements
10+
11+
- Update pre-release replace logic [#7](https://github.com/jupyterlite/javascript-kernel/pull/7) ([@jtpio](https://github.com/jtpio))
12+
- Better handle pre-releases [#6](https://github.com/jupyterlite/javascript-kernel/pull/6) ([@jtpio](https://github.com/jtpio))
13+
- Add step to deploy to GitHub Pages [#4](https://github.com/jupyterlite/javascript-kernel/pull/4) ([@jtpio](https://github.com/jtpio))
14+
- Updates and fixes [#1](https://github.com/jupyterlite/javascript-kernel/pull/1) ([@jtpio](https://github.com/jtpio))
15+
16+
### Documentation improvements
17+
18+
- README updates [#5](https://github.com/jupyterlite/javascript-kernel/pull/5) ([@jtpio](https://github.com/jtpio))
19+
20+
### Contributors to this release
21+
22+
([GitHub contributors page for this release](https://github.com/jupyterlite/javascript-kernel/graphs/contributors?from=2024-02-15&to=2024-02-15&type=c))
23+
24+
[@jtpio](https://github.com/search?q=repo%3Ajupyterlite%2Fjavascript-kernel+involves%3Ajtpio+updated%3A2024-02-15..2024-02-15&type=Issues)
25+
526
<!-- <END NEW CHANGELOG ENTRY> -->
627

728
For previous versions, you can refer to the JupyterLite changelog, which is where this kernel used to be developed: https://jupyterlite.readthedocs.io/en/stable/changelog.html

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"npmClient": "jlpm",
3-
"version": "0.2.3",
3+
"version": "0.3.0-alpha.0",
44
"useWorkspaces": true
55
}

package.json

Lines changed: 123 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -1,129 +1,129 @@
11
{
2-
"name": "@jupyterlite/javascript-kernel-root",
3-
"private": true,
4-
"version": "0.2.3",
5-
"description": "A JavaScript kernel for JupyterLite",
6-
"keywords": [
7-
"jupyter",
8-
"jupyterlab",
9-
"jupyterlab-extension"
2+
"name": "@jupyterlite/javascript-kernel-root",
3+
"private": true,
4+
"version": "0.3.0-a0",
5+
"description": "A JavaScript kernel for JupyterLite",
6+
"keywords": [
7+
"jupyter",
8+
"jupyterlab",
9+
"jupyterlab-extension"
10+
],
11+
"homepage": "https://github.com/jupyterlite/javascript-kernel",
12+
"bugs": {
13+
"url": "https://github.com/jupyterlite/javascript-kernel/issues"
14+
},
15+
"license": "BSD-3-Clause",
16+
"author": "JupyterLite Contributors",
17+
"repository": {
18+
"type": "git",
19+
"url": "https://github.com/jupyterlite/javascript-kernel.git"
20+
},
21+
"workspaces": {
22+
"packages": [
23+
"packages/*"
24+
]
25+
},
26+
"scripts": {
27+
"build": "lerna run build",
28+
"build:prod": "lerna run build:prod",
29+
"build:test": "lerna run build:test",
30+
"bump:js:version": "lerna version --no-push --force-publish --no-git-tag-version --yes",
31+
"clean": "lerna run clean",
32+
"install": "lerna bootstrap",
33+
"install:dev": "yarn run build:prod && yarn run develop",
34+
"install:extension": "jupyter labextension develop --overwrite .",
35+
"eslint": "eslint . --ext .ts,.tsx --fix",
36+
"eslint:check": "eslint . --ext .ts,.tsx",
37+
"lint": "yarn run eslint && yarn run prettier",
38+
"lint:check": "yarn run eslint:check && yarn run prettier:check",
39+
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
40+
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
41+
"publish": "yarn run clean && yarn run build && lerna publish",
42+
"test": "lerna run test",
43+
"watch": "lerna run watch"
44+
},
45+
"devDependencies": {
46+
"@typescript-eslint/eslint-plugin": "^6",
47+
"@typescript-eslint/parser": "^6",
48+
"eslint": "^8",
49+
"eslint-config-prettier": "^8",
50+
"eslint-plugin-prettier": "^5",
51+
"lerna": "^6.4.1",
52+
"prettier": "^3",
53+
"rimraf": "^3.0.2"
54+
},
55+
"eslintIgnore": [
56+
"node_modules",
57+
"dist",
58+
"coverage",
59+
"**/*.d.ts"
60+
],
61+
"eslintConfig": {
62+
"extends": [
63+
"eslint:recommended",
64+
"plugin:@typescript-eslint/eslint-recommended",
65+
"plugin:@typescript-eslint/recommended",
66+
"plugin:prettier/recommended"
1067
],
11-
"homepage": "https://github.com/jupyterlite/javascript-kernel",
12-
"bugs": {
13-
"url": "https://github.com/jupyterlite/javascript-kernel/issues"
68+
"parser": "@typescript-eslint/parser",
69+
"parserOptions": {
70+
"project": "tsconfig.eslint.json",
71+
"sourceType": "module"
1472
},
15-
"license": "BSD-3-Clause",
16-
"author": "JupyterLite Contributors",
17-
"repository": {
18-
"type": "git",
19-
"url": "https://github.com/jupyterlite/javascript-kernel.git"
20-
},
21-
"workspaces": {
22-
"packages": [
23-
"packages/*"
24-
]
25-
},
26-
"scripts": {
27-
"build": "lerna run build",
28-
"build:prod": "lerna run build:prod",
29-
"build:test": "lerna run build:test",
30-
"bump:js:version": "lerna version --no-push --force-publish --no-git-tag-version --yes",
31-
"clean": "lerna run clean",
32-
"install": "lerna bootstrap",
33-
"install:dev": "yarn run build:prod && yarn run develop",
34-
"install:extension": "jupyter labextension develop --overwrite .",
35-
"eslint": "eslint . --ext .ts,.tsx --fix",
36-
"eslint:check": "eslint . --ext .ts,.tsx",
37-
"lint": "yarn run eslint && yarn run prettier",
38-
"lint:check": "yarn run eslint:check && yarn run prettier:check",
39-
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
40-
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
41-
"publish": "yarn run clean && yarn run build && lerna publish",
42-
"test": "lerna run test",
43-
"watch": "lerna run watch"
44-
},
45-
"devDependencies": {
46-
"@typescript-eslint/eslint-plugin": "^6",
47-
"@typescript-eslint/parser": "^6",
48-
"eslint": "^8",
49-
"eslint-config-prettier": "^8",
50-
"eslint-plugin-prettier": "^5",
51-
"lerna": "^6.4.1",
52-
"prettier": "^3",
53-
"rimraf": "^3.0.2"
54-
},
55-
"eslintIgnore": [
56-
"node_modules",
57-
"dist",
58-
"coverage",
59-
"**/*.d.ts"
73+
"plugins": [
74+
"@typescript-eslint"
6075
],
61-
"eslintConfig": {
62-
"extends": [
63-
"eslint:recommended",
64-
"plugin:@typescript-eslint/eslint-recommended",
65-
"plugin:@typescript-eslint/recommended",
66-
"plugin:prettier/recommended"
67-
],
68-
"parser": "@typescript-eslint/parser",
69-
"parserOptions": {
70-
"project": "tsconfig.eslint.json",
71-
"sourceType": "module"
72-
},
73-
"plugins": [
74-
"@typescript-eslint"
75-
],
76-
"rules": {
77-
"@typescript-eslint/naming-convention": [
78-
"error",
79-
{
80-
"selector": "interface",
81-
"format": [
82-
"PascalCase"
83-
],
84-
"custom": {
85-
"regex": "^I[A-Z]",
86-
"match": true
87-
}
88-
}
89-
],
90-
"@typescript-eslint/no-unused-vars": [
91-
"warn",
92-
{
93-
"args": "none"
94-
}
95-
],
96-
"@typescript-eslint/no-explicit-any": "off",
97-
"@typescript-eslint/no-namespace": "off",
98-
"@typescript-eslint/no-use-before-define": "off",
99-
"@typescript-eslint/quotes": [
100-
"error",
101-
"single",
102-
{
103-
"avoidEscape": true,
104-
"allowTemplateLiterals": false
105-
}
106-
],
107-
"curly": [
108-
"error",
109-
"all"
110-
],
111-
"eqeqeq": "error",
112-
"prefer-arrow-callback": "error"
76+
"rules": {
77+
"@typescript-eslint/naming-convention": [
78+
"error",
79+
{
80+
"selector": "interface",
81+
"format": [
82+
"PascalCase"
83+
],
84+
"custom": {
85+
"regex": "^I[A-Z]",
86+
"match": true
87+
}
11388
}
114-
},
115-
"prettier": {
116-
"singleQuote": true,
117-
"trailingComma": "none",
118-
"arrowParens": "avoid",
119-
"endOfLine": "auto",
120-
"overrides": [
121-
{
122-
"files": "package.json",
123-
"options": {
124-
"tabWidth": 4
125-
}
126-
}
127-
]
89+
],
90+
"@typescript-eslint/no-unused-vars": [
91+
"warn",
92+
{
93+
"args": "none"
94+
}
95+
],
96+
"@typescript-eslint/no-explicit-any": "off",
97+
"@typescript-eslint/no-namespace": "off",
98+
"@typescript-eslint/no-use-before-define": "off",
99+
"@typescript-eslint/quotes": [
100+
"error",
101+
"single",
102+
{
103+
"avoidEscape": true,
104+
"allowTemplateLiterals": false
105+
}
106+
],
107+
"curly": [
108+
"error",
109+
"all"
110+
],
111+
"eqeqeq": "error",
112+
"prefer-arrow-callback": "error"
128113
}
129-
}
114+
},
115+
"prettier": {
116+
"singleQuote": true,
117+
"trailingComma": "none",
118+
"arrowParens": "avoid",
119+
"endOfLine": "auto",
120+
"overrides": [
121+
{
122+
"files": "package.json",
123+
"options": {
124+
"tabWidth": 4
125+
}
126+
}
127+
]
128+
}
129+
}

packages/javascript-kernel-extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlite/javascript-kernel-extension",
3-
"version": "0.2.3",
3+
"version": "0.3.0-alpha.0",
44
"description": "JupyterLite - JavaScript Kernel Extension",
55
"homepage": "https://github.com/jupyterlite/javascript-kernel",
66
"bugs": {
@@ -39,7 +39,7 @@
3939
"watch:src": "tsc -w"
4040
},
4141
"dependencies": {
42-
"@jupyterlite/javascript-kernel": "^0.2.1",
42+
"@jupyterlite/javascript-kernel": "^0.3.0-alpha.0",
4343
"@jupyterlite/kernel": "^0.2.1",
4444
"@jupyterlite/server": "^0.2.1"
4545
},

packages/javascript-kernel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlite/javascript-kernel",
3-
"version": "0.2.3",
3+
"version": "0.3.0-alpha.0",
44
"description": "JupyterLite - JavaScript Kernel",
55
"homepage": "https://github.com/jupyterlite/javascript-kernel",
66
"bugs": {

0 commit comments

Comments
 (0)