mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-05 09:36:19 +00:00
36599b321e
- Add support for version overrides/exclusions in our dependency check. Sometimes mod loaders use different versions to vanilla, and we need some way to handle that. - Rescan wired network connections on the tick after invalidation, rather than when invalidated. - Convert some constant lambdas to static method references. Lambdas don't allocate if they don't capture variables, so this has the same performance and is a little less ugly. - Small code-style/formatting changes.
38 lines
472 B
Plaintext
38 lines
472 B
Plaintext
# SPDX-FileCopyrightText: 2017 The CC: Tweaked Developers
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
# Build directories
|
|
/classes
|
|
/logs
|
|
/build
|
|
/projects/*/logs
|
|
/projects/fabric/fabricloader.log
|
|
/projects/*/build
|
|
/buildSrc/build
|
|
/out
|
|
/buildSrc/out
|
|
/jars
|
|
/doc/out/
|
|
/node_modules
|
|
.jqwik-database
|
|
|
|
# Runtime directories
|
|
/run
|
|
/projects/*/run
|
|
|
|
*.ipr
|
|
*.iws
|
|
*.iml
|
|
.idea
|
|
.gradle
|
|
*.DS_Store
|
|
|
|
/.classpath
|
|
/.project
|
|
/.settings
|
|
/.vscode
|
|
*.launch
|
|
|
|
/projects/*/src/generated/resources/.cache
|