mirror of
https://github.com/unraid/api.git
synced 2026-01-05 16:09:49 -06:00
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Eli Bosley <ekbosley@gmail.com> - **CI/CD** - Updated GitHub Actions workflow to build Unraid UI Web Components. - Adjusted artifact naming and download configurations. - **Web Components** - Added new web components and registration mechanism. - Implemented toast notifications. - Enhanced UI component library. - **Notifications** - Added real-time notification subscription. - Created notification settings page. - Implemented notification toast system. - **API Improvements** - Refactored GraphQL schema loading. - Updated authentication and cookie handling. - Improved error logging and server initialization. - **Development Tools** - Updated ESLint configuration. - Enhanced import path management. - Added new development dependencies.
7 lines
172 B
Bash
Executable File
7 lines
172 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Add Node.js binary path to PATH if not already present
|
|
if [[ ":$PATH:" != *":/usr/local/node/bin:"* ]]; then
|
|
export PATH="/usr/local/node/bin:$PATH"
|
|
fi
|