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

Save login credentials in local storage

Squashed commit of the following:

commit b480676cef
Author: Arne Schlüter <arne@schlueter.is>
Date:   Wed May 30 18:38:40 2018 +0200

    Remember login credentials

commit ed060e55b6
Author: Arne Schlüter <arne@schlueter.is>
Date:   Wed May 30 14:45:11 2018 +0200

    Add tests for auth process

commit ca8972f8c3
Author: Arne Schlüter <arne@schlueter.is>
Date:   Wed May 30 13:34:38 2018 +0200

    Make sure to always run tests in development
This commit is contained in:
Arne Schlüter 2018-05-30 18:40:42 +02:00
commit 3376e01930
8 changed files with 111 additions and 46 deletions

View file

@ -4,21 +4,19 @@
"description": "Airsonic UI written with re-frame",
"main": "index.js",
"scripts": {
"test": "run-s test:compile-once test:run-once",
"test:compile-once": "shadow-cljs compile test",
"test:run-once": "karma start --single-run",
"test:compile-watch": "shadow-cljs watch test",
"test:run-watch": "karma start --reporters growl,progress --auto-watch",
"test:watch": "npm-run-all test:compile-once -p test:compile-watch test:run-watch",
"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:*; ",
"deploy": "npm run build && gh-pages -d public",
"dev:cljs": "shadow-cljs watch app",
"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": "run-p dev:*"
"dev:test": "karma start --reporters growl,progress --auto-watch",
"dev": "npm-run-all test:compile -p dev:*",
"test": "run-s test:compile test:run",
"test:compile": "shadow-cljs compile test",
"test:run": "karma start --single-run"
},
"author": "Arne Schlüter",
"license": "ISC",