mirror of
https://github.com/MagicMirrorOrg/MagicMirror.git
synced 2026-03-12 17:51:41 +08:00
This is another change to cleanup structure, already mentioned in https://github.com/MagicMirrorOrg/MagicMirror/pull/4019#issuecomment-3792953018 After separating default and 3rd-party modules this PR moves the `custom.css` from the mm-owned directory `css` into user owned directory `config`. It has a built-in function which moves the `css/custom.css` to the new location `config/custom.css` (if the target not exists). Let me know if there's a majority in favor of this change.
84 lines
1.0 KiB
Plaintext
84 lines
1.0 KiB
Plaintext
# Various Node ignoramuses.
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
lib-cov
|
|
coverage
|
|
.lock-wscript
|
|
build/Release
|
|
node_modules
|
|
jspm_modules
|
|
.npm
|
|
.node_repl_history
|
|
|
|
# Visual Studio Code ignoramuses.
|
|
.vscode/
|
|
|
|
# IDE Code ignoramuses.
|
|
.idea/
|
|
|
|
# Various Windows ignoramuses.
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
*.cab
|
|
*.msi
|
|
*.msm
|
|
*.msp
|
|
*.lnk
|
|
|
|
# Various OSX ignoramuses.
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
._*
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.AppleDB
|
|
.AppleDesktop
|
|
Network Trash Folder
|
|
Temporary Items
|
|
.apdisk
|
|
|
|
# Various Linux ignoramuses.
|
|
.fuse_hidden*
|
|
.directory
|
|
.Trash-*
|
|
|
|
# Ignore all modules
|
|
/modules/*
|
|
|
|
# Ignore users config file but keep the samples.
|
|
config
|
|
!config/config.js.sample
|
|
!config/custom.css.sample
|
|
|
|
# Vim
|
|
## swap
|
|
[._]*.s[a-w][a-z]
|
|
[._]s[a-w][a-z]
|
|
|
|
## diff patch
|
|
*.orig
|
|
*.rej
|
|
*.bak
|
|
|
|
# Ignore positions file (#3518)
|
|
js/positions.js
|
|
|
|
# Ignore lock files other than package-lock.json
|
|
pnpm-lock.yaml
|
|
yarn.lock
|
|
|
|
# Vitest temporary test files
|
|
tests/**/.tmp/
|