Skip to content

Commit 723c4cc

Browse files
committed
Release 2.2.1
1 parent 7488f5e commit 723c4cc

File tree

6 files changed

+11437
-8306
lines changed

6 files changed

+11437
-8306
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,4 @@ dmypy.json
122122
.DS_Store
123123

124124
.idea/
125+
.yarn/

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

CHANGELOG.md

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

33
## Unreleased
44

5+
**General**
6+
7+
- Iron out what's causing mismatch of labextension and package release process;
8+
59
**Server extension**
610

711
- Actually support python>=3.7,<3.9 properly, courtesy of pdhall99;

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab_code_formatter",
3-
"version": "2.1.0",
3+
"version": "2.2.1",
44
"description": " A JupyterLab plugin to facilitate invocation of code formatters.",
55
"keywords": [
66
"jupyter",
@@ -57,11 +57,11 @@
5757
},
5858
"dependencies": {
5959
"@jupyterlab/application": "^3.6.0 || ~4.0.0",
60-
"@jupyterlab/settingregistry": "^3.6.0 || ~4.0.0",
6160
"@jupyterlab/coreutils": "^5.1.0",
62-
"@jupyterlab/services": "^6.1.0",
6361
"@jupyterlab/fileeditor": "^3.6.0 || ~4.0.0",
64-
"@jupyterlab/mainmenu": "^3.6.0 || ~4.0.0"
62+
"@jupyterlab/mainmenu": "^3.6.0 || ~4.0.0",
63+
"@jupyterlab/services": "^6.1.0",
64+
"@jupyterlab/settingregistry": "^3.6.0 || ~4.0.0"
6565
},
6666
"devDependencies": {
6767
"@babel/core": "^7.0.0",
@@ -84,8 +84,8 @@
8484
"stylelint-config-recommended": "^6.0.0",
8585
"stylelint-config-standard": "~24.0.0",
8686
"stylelint-prettier": "^2.0.0",
87-
"typescript": "~4.1.3",
88-
"ts-jest": "^26.0.0"
87+
"ts-jest": "^26.0.0",
88+
"typescript": "~4.1.3"
8989
},
9090
"sideEffects": [
9191
"style/*.css",

scripts/build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
set -euxo pipefail
4+
5+
rm -rf /plugin/jupyterlab_code_formatter/labextension
6+
hatch build

0 commit comments

Comments
 (0)