Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow additional standard dependencies in .env #109

Merged
merged 3 commits into from
Jan 26, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Allow additional standard deps in .env
See #104. This allows additional standard dependencies to be specified in the `.env` file under the `STANDARD_DEPENDENCIES` variable.
sebamarynissen committed Jan 26, 2025
commit e729744608e49c565e0c1bd90bd1712a9f4fbefa
2 changes: 2 additions & 0 deletions scripts/standard-deps.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// # standard-deps.js
const env = process.env.STANDARD_DEPENDENCIES ?? '';
export default [
'memo:essential-fixes',
'memo:transparent-texture-fix-dll',
'memo:region-thumbnail-fix-dll',
'peg:oops-mod',
'simmaster07:sc4fix',
'simmaster07:extra-cheats-dll',
...env.split(','),
];