Updated the gitignore files and some small changes
parent
cafdf637cf
commit
7c98e5ec7d
|
@ -1,20 +1,31 @@
|
||||||
asm/generated/
|
# Global ignorings
|
||||||
node_modules/
|
|
||||||
auth/certs/
|
|
||||||
auth/js/auth.js.map
|
|
||||||
|
|
||||||
.sass-cache/
|
|
||||||
.idea/
|
.idea/
|
||||||
|
node_modules/
|
||||||
|
.sass-cache/
|
||||||
|
|
||||||
vendor/emoji-picker/**/*.js
|
/auth/certs/
|
||||||
vendor/emoji-picker/**/*.js.map
|
/auth/js/auth.js.map
|
||||||
|
|
||||||
TeaSpeakUI.tar.gz
|
/.idea/
|
||||||
TeaWeb-*.zip
|
|
||||||
|
|
||||||
todo.txt
|
/vendor/emoji-picker/**/*.js
|
||||||
|
/vendor/emoji-picker/**/*.js.map
|
||||||
|
!/vendor/emoji-picker/webpack.config.js
|
||||||
|
|
||||||
tmp/
|
# Some build output
|
||||||
|
/dist/
|
||||||
|
/declarations/
|
||||||
|
|
||||||
file.js
|
# Don't add the created packages to git
|
||||||
file.js.map
|
/TeaSpeakUI.tar.gz
|
||||||
|
/TeaWeb-*.zip
|
||||||
|
|
||||||
|
/todo.txt
|
||||||
|
/tmp/
|
||||||
|
|
||||||
|
# All out config files are .ts files
|
||||||
|
/*.js
|
||||||
|
/*.js.map
|
||||||
|
|
||||||
|
/webpack/*.js
|
||||||
|
/webpack/*.js.map
|
|
@ -1,4 +1,6 @@
|
||||||
generated/
|
generated/
|
||||||
build_/
|
build_/
|
||||||
libraries/opus/build_
|
libraries/opus/build_
|
||||||
libraries/opus/out
|
libraries/opus/out
|
||||||
|
cmake-build-*/
|
||||||
|
libraries/opus/*
|
|
@ -0,0 +1,8 @@
|
||||||
|
/dtsgen/**/*.js
|
||||||
|
/dtsgen/**/*.js.map
|
||||||
|
|
||||||
|
# Output directory for some local tests
|
||||||
|
/dtsgen/test/
|
||||||
|
|
||||||
|
/trgen/**/*.js
|
||||||
|
/trgen/**/*.js.map
|
|
@ -1,2 +0,0 @@
|
||||||
**/*.js
|
|
||||||
**/*.js.map
|
|
Loading…
Reference in New Issue