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: commitb480676cefAuthor: Arne Schlüter <arne@schlueter.is> Date: Wed May 30 18:38:40 2018 +0200 Remember login credentials commited060e55b6Author: Arne Schlüter <arne@schlueter.is> Date: Wed May 30 14:45:11 2018 +0200 Add tests for auth process commitca8972f8c3Author: 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:
parent
5929bc7581
commit
3376e01930
8 changed files with 111 additions and 46 deletions
14
package.json
14
package.json
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue