mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
Fix gitignore to not ignore default modules folder
/modules/** makes git ignore all directories and files in /modules, so it's not even looking in /modules/default for changes. !/modules/default/** is therefore never used. By adding the new line !/modules/default, git is told to look in the /modules/default folder for changes and will find all sub files/dirs and match these on !/modules/default/**.
This commit is contained in:
parent
8ac8b666bf
commit
2e9b6ead2e
1
.gitignore
vendored
1
.gitignore
vendored
@ -59,6 +59,7 @@ Temporary Items
|
||||
|
||||
# Ignore all modules except the default modules.
|
||||
/modules/**
|
||||
!/modules/default
|
||||
!/modules/default/**
|
||||
!/modules/README.md**
|
||||
|
||||
|
@ -7,6 +7,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
### Added
|
||||
- Add loaded function to modules, providing an async callback.
|
||||
|
||||
### Fixed
|
||||
- Update .gitignore to not ignore default modules folder
|
||||
|
||||
## [2.1.0] - 2016-12-31
|
||||
|
||||
**Note:** This update uses new dependencies. Please update using the following command: `git pull && npm install`
|
||||
|
Loading…
x
Reference in New Issue
Block a user