1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-07 02:33:39 +02:00

Add open-iconic and use icons for playback control buttons

This commit is contained in:
Arne Schlüter 2018-06-03 15:00:11 +02:00
commit 115f5cd3e6
6 changed files with 43 additions and 14 deletions

View file

@ -7,13 +7,14 @@
"build:cljs": "shadow-cljs release app",
"build:html": "sed 's/\"\\/app\\//\".\\/app\\//g' src/html/index.html > public/index.html",
"build:sass": "node-sass --output-style compressed src/sass/app.sass public/app/style.css",
"build": "rm -r public/*; run-p build:*; ",
"build": "rm -r public/*; run-p copy:* build:*",
"copy:icons": "cp -R node_modules/open-iconic/font/fonts public",
"deploy": "npm run build && gh-pages -d public -m \"Deploying $(git rev-parse --short HEAD)\"",
"dev:cljs": "shadow-cljs watch app test",
"dev:html": "sed 's/\"\\.\\/app\\//\"\\/app\\//g' src/html/index.html > public/index.html",
"dev:sass": "npm run build:sass; node-sass -w src/sass/app.sass public/app/style.css",
"dev:test": "karma start --reporters growl,progress --auto-watch",
"dev": "npm-run-all test:compile -p dev:*",
"dev": "npm-run-all copy:* test:compile -p dev:*",
"test": "run-s test:compile test:run",
"test:compile": "shadow-cljs compile test",
"test:run": "karma start --single-run"
@ -28,6 +29,7 @@
"@hugojosefson/color-hash": "^2.0.3",
"bulma": "^0.7.1",
"create-react-class": "^15.6.3",
"open-iconic": "^1.1.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"shadow-cljs": "^2.3.19"