-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from mlibrary/2024-04-01-updates
April 2024 dependency updates.
- Loading branch information
Showing
12 changed files
with
365 additions
and
1,734 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
version: 2 | ||
updates: | ||
# Enable version updates for npm | ||
- package-ecosystem: npm | ||
# Look for `package.json` and `lock` files in the `root` directory | ||
directory: / | ||
# Check the npm registry for updates every first day of the month at 6am EST | ||
schedule: | ||
interval: weekly | ||
timezone: America/Detroit | ||
time: "06:00" | ||
# Assign to the lead developer | ||
assignees: | ||
- erinesullivan | ||
# Add the `dependencies` label | ||
labels: | ||
- dependencies | ||
|
||
# Enable version updates for GitHub Actions with similar scheduling details | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
timezone: America/Detroit | ||
time: "06:00" | ||
assignees: | ||
- erinesullivan | ||
labels: | ||
- dependencies | ||
|
||
# Enable version updates for Gems with similar scheduling details | ||
- package-ecosystem: bundler | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
timezone: America/Detroit | ||
time: "06:00" | ||
assignees: | ||
- niquerio | ||
labels: | ||
- dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ coverage/ | |
.irb_history | ||
node_modules/ | ||
.npm/ | ||
public/browse.css | ||
.bash_history | ||
.cache/ | ||
.solargraph.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:3.2 AS development | ||
FROM ruby:3.3 AS development | ||
|
||
ARG UNAME=app | ||
ARG UID=1000 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -176,4 +176,4 @@ DEPENDENCIES | |
yabeda-puma-plugin | ||
|
||
BUNDLED WITH | ||
2.5.6 | ||
2.5.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* | ||
* Select Dropdown Tips | ||
*/ | ||
const selectDropdown = document.querySelector('.search-box-dropdown select'); | ||
const optionTips = document.querySelectorAll('p[data-option]'); | ||
|
||
selectDropdown.addEventListener('change', (event) => { | ||
optionTips.forEach((optionTip) => { | ||
const dataOptionValue = optionTip.getAttribute('data-option'); | ||
optionTip.style.display = dataOptionValue === event.target.value ? 'initial' : 'none'; | ||
}); | ||
}); |
Oops, something went wrong.