mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-19 18:31:52 +00:00
I was always unhappy when maintaining dependency updates to have 3 `package.json` files. This PR moves all deps into the main `package.json` and removes the folders `fonts` and `vendor`. If accepted I will update the docs too. --------- Co-authored-by: Kristjan ESPERANTO <35647502+KristjanESPERANTO@users.noreply.github.com>
91 lines
1.2 KiB
Plaintext
91 lines
1.2 KiB
Plaintext
# Various Node ignoramuses.
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
lib-cov
|
|
coverage
|
|
.lock-wscript
|
|
build/Release
|
|
/node_modules/**/*
|
|
!/tests/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 except the default modules.
|
|
/modules/**
|
|
!/modules/default
|
|
!/modules/default/**
|
|
!/modules/README.md**
|
|
|
|
# Ignore changes to the custom css files but keep the sample and main.
|
|
/css/*
|
|
!/css/custom.css.sample
|
|
!/css/main.css
|
|
!/css/roboto.css
|
|
!/css/font-awesome.css
|
|
|
|
# Ignore users config file but keep the sample.
|
|
/config/*
|
|
!/config/config.js.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
|