Some refactoring to aling it more with IVIS and coreui theme.

This commit is contained in:
Tomas Bures 2019-01-05 23:56:16 +01:00
parent 397f85dac4
commit c1731bf09f
50 changed files with 1427 additions and 2351 deletions

File diff suppressed because it is too large Load diff

View file

@ -4,8 +4,14 @@
"description": "",
"main": "index.js",
"scripts": {
"build": "node ../ivis-core/client/pre-build.js && webpack",
"watch": "node ../ivis-core/client/pre-build.js && webpack --watch"
"js": "webpack",
"watch-js": "webpack --watch",
"css": "npm-run-all --sequential css-compile css-minify",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 ../ivis-core/client/src/scss/ivis.scss ../ivis-core/client/dist/ivis.css",
"css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output ../ivis-core/client/dist/ivis.min.css ../ivis-core/client/dist/ivis.css",
"watch-css": "nodemon --watch ../ivis-core/client/src/scss -e scss -x \"npm run css\"",
"watch": "node ../ivis-core/client/pre-build.js && npm-run-all --parallel watch-css watch-js",
"build": "node ../ivis-core/client/pre-build.js && npm-run-all --parallel css js"
},
"author": "Tomas Bures",
"license": "MIT",
@ -18,9 +24,12 @@
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"clean-css-cli": "^4.2.1",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",