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

Provide local version of airsonic logo created by @jooola

This commit is contained in:
Arne Schlüter 2018-08-22 19:14:51 +02:00
commit d26decb2ff
4 changed files with 3 additions and 3 deletions

View file

@ -7,13 +7,13 @@
"build:cljs": "shadow-cljs release app",
"build:sass": "node-sass --output-style compressed src/sass/app.sass public/app/style.css",
"build": "rm -r public/*; run-p copy:* build:*",
"copy:html": "cp src/html/index.html public/index.html",
"copy:assets": "cp -R src/assets/* public/",
"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: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 copy:* -p dev:*",
"dev": "rm -r public/*; npm-run-all copy:* -p dev:*",
"test": "run-s test:compile test:run",
"test:compile": "shadow-cljs compile test",
"test:run": "karma start --single-run"