File: css

package info (click to toggle)
highlight.js 10.7.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,332 kB
  • sloc: javascript: 41,059; makefile: 157; python: 29; sh: 20
file content (15 lines) | stat: -rwxr-xr-x 704 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
#
# tool to help with css refactoring, can perhaps be removed
# once CSS is consistent? or moved to tools?
#
cp test/markup/css/css_consistency.txt test/markup/less
cp test/markup/css/css_consistency.expect.txt test/markup/less
cp test/markup/css/css_consistency.txt test/markup/scss
cp test/markup/css/css_consistency.expect.txt test/markup/scss
cp test/markup/css/css_consistency.txt test/markup/stylus
cp test/markup/css/css_consistency.expect.txt test/markup/stylus

echo Overall size:
ls -l src/languages/{less,css,scss,stylus}.js src/languages/lib/css-shared.js
ls -l src/languages/{less,css,scss,stylus}.js src/languages/lib/css-shared.js | cut -d' ' -f8 | awk '{s+=$1} END {print s}'