Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Google Chrome
Super Evil Dark Theme
Commits
07b2bdf1
Verified
Commit
07b2bdf1
authored
Sep 11, 2018
by
Marco Kellershoff
🤸
Browse files
Re-organize files
parent
1008afdb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Taskfile
0 → 100755
View file @
07b2bdf1
#!/bin/bash
function
clean
{
rm
-rf
./dist/
*
}
function
temp-build
{
cp
-r
src/
*
tmp/
;
}
function
clean
{
rm
-rf
dist/
*
;
rm
-rf
tmp/
*
;
}
function
build
{
local
version
=
$(
cat
src/manifest.json | jq
-r
.version
)
clean
;
cd
tmp/
&&
zip
-r
../dist/chrome-super-evil-dark-theme-
$version
.zip
}
function
default
{
build
}
function
tasks
{
compgen
-A
function
|
grep
-v
"^_"
}
function
help
{
echo
"
$0
<task> <args>"
echo
"Tasks:"
tasks |
cat
-n
}
${
@
:-
default
}
dist/.gitignore
0 → 100644
View file @
07b2bdf1
*
!.gitignore
tmp/.gitignore
0 → 100644
View file @
07b2bdf1
*
!.gitignore
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment