From 2f2e9848e460554d19efd10ef0bcd3aa76e8a948 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Tue, 17 Apr 2018 17:11:20 +0300 Subject: [PATCH] Added compilerconfig.json --- ...o.Abp.AspNetCore.Mvc.UI.Theme.Basic.csproj | 9 ---- .../compilerconfig.json | 10 ++++ .../compilerconfig.json.defaults | 49 +++++++++++++++++++ 3 files changed, 59 insertions(+), 9 deletions(-) create mode 100644 src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/compilerconfig.json create mode 100644 src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/compilerconfig.json.defaults diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.csproj b/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.csproj index 17e0d099fd..ee95a4b3ea 100644 --- a/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.csproj +++ b/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.csproj @@ -31,15 +31,6 @@ - - - PreserveNewest - - - PreserveNewest - - - diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/compilerconfig.json b/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/compilerconfig.json new file mode 100644 index 0000000000..97c5cc7926 --- /dev/null +++ b/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/compilerconfig.json @@ -0,0 +1,10 @@ +[ + { + "outputFile": "wwwroot/styles/mybstheme.css", + "inputFile": "wwwroot/styles/mybstheme.scss" + }, + { + "outputFile": "wwwroot/styles/libs/datatables.css", + "inputFile": "wwwroot/styles/libs/datatables.scss" + } +] \ No newline at end of file diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/compilerconfig.json.defaults b/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/compilerconfig.json.defaults new file mode 100644 index 0000000000..c75eb7d519 --- /dev/null +++ b/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/compilerconfig.json.defaults @@ -0,0 +1,49 @@ +{ + "compilers": { + "less": { + "autoPrefix": "", + "cssComb": "none", + "ieCompat": true, + "strictMath": false, + "strictUnits": false, + "relativeUrls": true, + "rootPath": "", + "sourceMapRoot": "", + "sourceMapBasePath": "", + "sourceMap": false + }, + "sass": { + "includePath": "", + "indentType": "space", + "indentWidth": 2, + "outputStyle": "nested", + "Precision": 5, + "relativeUrls": true, + "sourceMapRoot": "", + "sourceMap": false + }, + "stylus": { + "sourceMap": false + }, + "babel": { + "sourceMap": false + }, + "coffeescript": { + "bare": false, + "runtimeMode": "node", + "sourceMap": false + } + }, + "minifiers": { + "css": { + "enabled": true, + "termSemicolons": true, + "gzip": false + }, + "javascript": { + "enabled": true, + "termSemicolons": true, + "gzip": false + } + } +} \ No newline at end of file