voterunner

quick and dirty votes and discussions
git clone https://git.ce9e.org/voterunner.git

commit
732774902e408ef18130b59da3b5afc860f5a3b3
parent
8f078ff68c43e6fc29e094d8c04ecd4f4d2521e5
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2020-10-17 08:28
mv files out of static

Diffstat

M .gitignore 4 ++--
M Makefile 12 ++++++------
R static/index.html -> index.html 0
R static/scss/bar.scss -> scss/bar.scss 0
R static/scss/base.scss -> scss/base.scss 0
R static/scss/layout.scss -> scss/layout.scss 0
R static/scss/style.scss -> scss/style.scss 6 +++---
R static/scss/tree.scss -> scss/tree.scss 0
R static/scss/user.scss -> scss/user.scss 0
R static/src/template.js -> src/template.js 0
R static/src/utils.js -> src/utils.js 0
R static/src/voterunner.js -> src/voterunner.js 0
R static/test/index.html -> test/index.html 0
R static/test/test.js -> test/test.js 0

14 files changed, 11 insertions, 11 deletions


diff --git a/.gitignore b/.gitignore

@@ -1,3 +1,3 @@
    1     1 node_modules
    2    -1 static/style.css
    3    -1 static/voterunner.js
   -1     2 /style.css
   -1     3 /voterunner.js

diff --git a/Makefile b/Makefile

@@ -1,10 +1,10 @@
    1    -1 all: static/voterunner.js static/style.css
   -1     1 all: voterunner.js style.css
    2     2 
    3    -1 static/voterunner.js: static/src/*.js
    4    -1 	browserify static/src/voterunner.js -o $@
   -1     3 voterunner.js: src/*.js
   -1     4 	browserify src/voterunner.js -o $@
    5     5 
    6    -1 static/style.css: static/scss/*.scss
    7    -1 	sassc static/scss/style.scss $@
   -1     6 style.css: scss/*.scss
   -1     7 	sassc scss/style.scss $@
    8     8 
    9     9 clean:
   10    -1 	rm static/voterunner.js static/style.css
   -1    10 	rm voterunner.js style.css

diff --git a/static/index.html b/index.html

diff --git a/static/scss/bar.scss b/scss/bar.scss

diff --git a/static/scss/base.scss b/scss/base.scss

diff --git a/static/scss/layout.scss b/scss/layout.scss

diff --git a/static/scss/style.scss b/scss/style.scss

@@ -7,9 +7,9 @@ $color-border: #c0c0c0;
    7     7 
    8     8 $padding: 0.4em;
    9     9 
   10    -1 @import '../../node_modules/mfbs/sass/variables';
   11    -1 @import '../../node_modules/mfbs/sass/base';
   12    -1 @import '../../node_modules/mfbs/sass/layout';
   -1    10 @import '../node_modules/mfbs/sass/variables';
   -1    11 @import '../node_modules/mfbs/sass/base';
   -1    12 @import '../node_modules/mfbs/sass/layout';
   13    13 
   14    14 @import 'base';
   15    15 @import 'layout';

diff --git a/static/scss/tree.scss b/scss/tree.scss

diff --git a/static/scss/user.scss b/scss/user.scss

diff --git a/static/src/template.js b/src/template.js

diff --git a/static/src/utils.js b/src/utils.js

diff --git a/static/src/voterunner.js b/src/voterunner.js

diff --git a/static/test/index.html b/test/index.html

diff --git a/static/test/test.js b/test/test.js