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

Add autoprefixer

This commit is contained in:
heyarne 2019-03-08 08:47:10 +01:00
commit 909b737322
3 changed files with 635 additions and 351 deletions

975
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -5,13 +5,13 @@
"main": "index.js",
"scripts": {
"build:cljs": "shadow-cljs release app",
"build:sass": "node-sass --output-style compressed src/sass/app.sass public/app/style.css",
"build:sass": "node-sass --output-style compressed src/sass/app.sass | postcss > public/app/style.css",
"build": "rm -r public/*; run-p copy:* build:*",
"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:sass": "npm run build:sass; node-sass -w src/sass/app.sass | postcss > public/app/style.css",
"dev:test": "karma start --reporters notify,progress --auto-watch",
"dev": "rm -r public/*; npm-run-all copy:* test:compile -p dev:*",
"test": "run-s test:compile test:run",
@ -26,9 +26,11 @@
},
"dependencies": {
"@hugojosefson/color-hash": "^2.0.3",
"autoprefixer": "^9.4.10",
"bulma": "^0.7.3",
"create-react-class": "^15.6.3",
"open-iconic": "^1.1.1",
"postcss-cli": "^6.1.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-sortable-hoc": "^1.6.1"

5
postcss.config.js Normal file
View file

@ -0,0 +1,5 @@
module.exports = {
plugins: [
require('autoprefixer')
]
}