Skip to content

Commit cbe5bbe

Browse files
authored
Merge branch 'dev' into fix-defaultProps
2 parents 60f3890 + 68456b3 commit cbe5bbe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+9361
-8008
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
orbs:
44
win: circleci/[email protected]
55
percy: percy/[email protected]
6-
browser-tools: circleci/[email protected].6
6+
browser-tools: circleci/[email protected].8
77

88

99
jobs:

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These owners will be the default owners for everything in
22
# the repo. Unless a later match takes precedence
3-
* @alexcjohnson @T4rk1n @ndrezn
3+
* @alexcjohnson @T4rk1n @ndrezn @gvwilson @emilykl

@plotly/dash-jupyterlab/package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,16 @@
3333
"watch": "tsc -w"
3434
},
3535
"dependencies": {
36-
"@jupyterlab/application": "^2.0.0 || ^3.0.0",
37-
"@jupyterlab/notebook": "^2.0.0 || ^3.0.0",
38-
"@jupyterlab/console": "^2.0.0 || ^3.0.0"
36+
"@jupyterlab/application": "^2.0.0 || ^3.0.0 || ^4.0.0",
37+
"@jupyterlab/console": "^2.0.0 || ^3.0.0 || ^4.0.0",
38+
"@jupyterlab/notebook": "^2.0.0 || ^3.0.0 || ^4.0.0"
3939
},
4040
"devDependencies": {
41+
"@types/json-schema": "^7.0.15",
42+
"mkdirp": "^0.5.1",
4143
"prettier": "2.0.5",
4244
"rimraf": "3.0.2",
43-
"typescript": "3.9.3",
44-
"mkdirp": "^0.5.1"
45+
"typescript": "5.6.2"
4546
},
4647
"jupyterlab": {
4748
"extension": true

@plotly/dash-jupyterlab/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"declaration": true,
4-
"lib": ["es2015", "dom"],
4+
"lib": ["es2018", "dom"],
55
"module": "commonjs",
66
"moduleResolution": "node",
77
"noEmitOnError": true,
@@ -10,7 +10,7 @@
1010
"rootDir": "src",
1111
"strict": true,
1212
"strictNullChecks": false,
13-
"target": "es2015",
13+
"target": "es2018",
1414
"types": [],
1515
"esModuleInterop": true
1616
},

0 commit comments

Comments
 (0)