mirror of
https://github.com/DerTyp7/better-teamspeak-theme.git
synced 2025-10-29 12:42:09 +01:00
Update package.json and remove unused files
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
node_modules/
|
||||||
|
dist/
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
.ts-server-tree-item-root {
|
|
||||||
--tsv-footer-bg: red;
|
|
||||||
}
|
|
||||||
13
build.sh
Normal file
13
build.sh
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
npm install node-sass --save-dev
|
||||||
|
|
||||||
|
# Remove old dist folder
|
||||||
|
rm -rf ./dist
|
||||||
|
|
||||||
|
# Create new dist folder
|
||||||
|
mkdir ./dist
|
||||||
|
|
||||||
|
# Move other files to dist folder
|
||||||
|
find ./src -type f ! -name "*.scss" -exec cp {} ./dist/ \;
|
||||||
|
|
||||||
|
npx node-sass --output-style compressed --source-map-contents true --precision 6 --output ./dist ./src/*.scss
|
||||||
6
build_dev.sh
Normal file
6
build_dev.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
./build.sh
|
||||||
|
|
||||||
|
# cp files from dist to root folder and keep track of the files in a .dev_files_to_delete file
|
||||||
|
find ./dist -type f -exec cp {} ./ \; -exec echo {} >> .dev_files_to_delete \;
|
||||||
2409
package-lock.json
generated
Normal file
2409
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
26
package.json
26
package.json
@@ -1,22 +1,20 @@
|
|||||||
{
|
{
|
||||||
"name": "BetterTeamSpeakTheme",
|
"name": "betterteamspeaktheme",
|
||||||
"description": "Better TeamSpeak5 Theme",
|
"description": "Better TeamSpeak5 Theme",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"identifier": "de.dertyp7.ts",
|
"identifier": "de.dertyp.betterteamspeaktheme",
|
||||||
"engines": {
|
"engines": {
|
||||||
"teamspeak": 1
|
"teamspeak": 1
|
||||||
},
|
},
|
||||||
"homepage": "https://community.teamspeak.com",
|
"homepage": "https://community.teamspeak.com",
|
||||||
"docsUrl": "https://community.teamspeak.com",
|
"docsUrl": "https://community.teamspeak.com",
|
||||||
"repository": "https://github.com/DerTyp7/better-teamspeak-theme",
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/DerTyp7/better-teamspeak-theme.git"
|
||||||
|
},
|
||||||
"image": "logo.png",
|
"image": "logo.png",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": {
|
"author": "dertyp7 <dertyp7@tealfire.de> (https://tealfire.de)",
|
||||||
"name": "dertyp7",
|
|
||||||
"email": "dertyp7@tealfire.de",
|
|
||||||
"url": "https://tealfire.de",
|
|
||||||
"userTag": "dertyp7@myteamspeak.com"
|
|
||||||
},
|
|
||||||
"community": {
|
"community": {
|
||||||
"server": "tealfire.de"
|
"server": "tealfire.de"
|
||||||
},
|
},
|
||||||
@@ -29,5 +27,15 @@
|
|||||||
"image": "logo.png"
|
"image": "logo.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/DerTyp7/better-teamspeak-theme/issues"
|
||||||
|
},
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"node-sass": "^9.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
5
src/BetterTeamSpeakTheme.scss
Normal file
5
src/BetterTeamSpeakTheme.scss
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
.tsv-text-truncate{
|
||||||
|
.test{
|
||||||
|
counter-reset: line;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Reference in New Issue
Block a user