Skip to content

Commit d97f9bc

Browse files
authored
Merge branch 'dev' into patch-1
2 parents 7cb53d5 + cd8648b commit d97f9bc

Some content is hidden

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

58 files changed

+6933
-7214
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,18 +158,18 @@ jobs:
158158
pip install --no-cache-dir --upgrade -e .[ci,dev] --progress-bar off
159159
- run:
160160
command: |
161-
nvm install 18 && nvm use 18
161+
nvm install 24 && nvm use 24
162162
- run:
163163
name: npm prereqs
164164
command: |
165-
nvm use 18
165+
nvm use 24
166166
npm ci
167167
cd dash/dash-renderer && npm i && cd ../../
168168
cd components/dash-html-components && npm i && npm run extract && cd ../../
169169
- run:
170170
name: ️️🏗️ build dash
171171
command: |
172-
nvm use 18
172+
nvm use 24
173173
. venv/Scripts/activate
174174
npm run private::build.jupyterlab && npm run private::build.renderer
175175
cd components/dash-html-components && npm run build

.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-
* @T4rk1n @ndrezn @gvwilson @emilykl
3+
* @T4rk1n @ndrezn @camdecoster @KoolADE85

.github/dependabot.yml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
version: 2
2+
updates:
3+
# Root package dependencies
4+
- package-ecosystem: "npm"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
day: "monday"
9+
groups:
10+
npm-dependencies:
11+
patterns:
12+
- "*"
13+
ignore:
14+
# Ignore @plotly packages
15+
- dependency-name: "@plotly/*"
16+
17+
# Dash renderer
18+
- package-ecosystem: "npm"
19+
directory: "/dash/dash-renderer"
20+
schedule:
21+
interval: "weekly"
22+
day: "monday"
23+
groups:
24+
npm-dependencies:
25+
patterns:
26+
- "*"
27+
28+
# Components - dash-core-components
29+
- package-ecosystem: "npm"
30+
directory: "/components/dash-core-components"
31+
schedule:
32+
interval: "weekly"
33+
day: "monday"
34+
groups:
35+
npm-dependencies:
36+
patterns:
37+
- "*"
38+
39+
# Components - dash-html-components
40+
- package-ecosystem: "npm"
41+
directory: "/components/dash-html-components"
42+
schedule:
43+
interval: "weekly"
44+
day: "monday"
45+
groups:
46+
npm-dependencies:
47+
patterns:
48+
- "*"
49+
50+
# Components - dash-table
51+
- package-ecosystem: "npm"
52+
directory: "/components/dash-table"
53+
schedule:
54+
interval: "weekly"
55+
day: "monday"
56+
groups:
57+
npm-dependencies:
58+
patterns:
59+
- "*"
60+
61+
# Python dependencies
62+
- package-ecosystem: "pip"
63+
directory: "/"
64+
schedule:
65+
interval: "weekly"
66+
day: "monday"
67+
groups:
68+
pip-dependencies:
69+
patterns:
70+
- "*"

0 commit comments

Comments
 (0)