diff --git a/site/src/scss/_bootstrap_variables.scss b/site/src/scss/_bootstrap_variables.scss new file mode 100644 index 0000000..bb786ab --- /dev/null +++ b/site/src/scss/_bootstrap_variables.scss @@ -0,0 +1,10 @@ +@import "~bootstrap/scss/functions"; +@import "~bootstrap/scss/variables"; +@import "~bootstrap/scss/mixins"; + +// bootstrap minify bugfix: +$navbar-dark-toggler-icon-bg: none; +$navbar-light-toggler-icon-bg: none; + +// IE > 9 +$enable-flex: true; \ No newline at end of file diff --git a/site/src/scss/_variables.scss b/site/src/scss/_variables.scss index 48a987c..a66c035 100644 --- a/site/src/scss/_variables.scss +++ b/site/src/scss/_variables.scss @@ -1,10 +1,5 @@ +@import "_bootstrap_variables"; + /* * Your custom variables - */ - -// bootstrap minify bugfix: -$navbar-dark-toggler-icon-bg: none; -$navbar-light-toggler-icon-bg: none; - -// IE > 9 -$enable-flex: true; \ No newline at end of file + */ \ No newline at end of file diff --git a/site/src/scss/app.scss b/site/src/scss/app.scss index 8e4fc53..ff68f4e 100644 --- a/site/src/scss/app.scss +++ b/site/src/scss/app.scss @@ -1,10 +1,6 @@ -// Your custom variables -@import "variables"; - // Bootstrap basics -@import "~bootstrap/scss/functions"; -@import "~bootstrap/scss/variables"; -@import "~bootstrap/scss/mixins"; +@import "_bootstrap_variables"; + @import "~bootstrap/scss/root"; @import "~bootstrap/scss/reboot"; @import "~bootstrap/scss/type"; @@ -38,9 +34,12 @@ @import "~bootstrap/scss/utilities"; @import "~bootstrap/scss/print"; -// Font Awesome $fa-font-path: "~font-awesome/fonts"; @import "~font-awesome/scss/font-awesome"; +// Your custom variables +@import "_variables"; + // Your custom UI -@import "layout"; \ No newline at end of file +@import "types/typography"; +@import "_layout"; \ No newline at end of file diff --git a/site/src/scss/types/HomePage.scss b/site/src/scss/types/HomePage.scss new file mode 100644 index 0000000..916afb4 --- /dev/null +++ b/site/src/scss/types/HomePage.scss @@ -0,0 +1 @@ +@import "../variables"; \ No newline at end of file diff --git a/site/src/scss/types/typography.scss b/site/src/scss/types/typography.scss new file mode 100644 index 0000000..916afb4 --- /dev/null +++ b/site/src/scss/types/typography.scss @@ -0,0 +1 @@ +@import "../variables"; \ No newline at end of file diff --git a/webpack.config.common.js b/webpack.config.common.js index 4635b6a..a13fc58 100755 --- a/webpack.config.common.js +++ b/webpack.config.common.js @@ -5,7 +5,7 @@ const ManifestPlugin = require("webpack-manifest-plugin"); const conf = require("./webpack.configuration"); const isProduction = process.env.NODE_ENV === "production"; -const jsScripts = { +const includes = { app: path.join(conf.SRC, "js/app.js"), }; @@ -30,11 +30,17 @@ const _getAllFilesFromFolder = function(dir) { // add page specific scripts const pageScripts = _getAllFilesFromFolder(conf.PAGES); pageScripts.forEach((file) => { - jsScripts[path.basename(file, ".js")] = file; + includes[path.basename(file, ".js")] = file; +}); + +// add page specific scss +const scssIncludes = _getAllFilesFromFolder(conf.PAGESSCSS); +scssIncludes.forEach((file) => { + includes[path.basename(file, ".scss")] = file; }); module.exports = { - entry: jsScripts, + entry: includes, devtool: "source-map", externals: { "jquery": "jQuery", @@ -58,6 +64,13 @@ module.exports = { ] }, } + }, { + test: /\.tsx?$/, + use: 'ts-loader', + exclude: /node_modules/ + }, { + test: /\.coffee?$/, + use: 'coffee-loader' }, { test: /\.(png|jpg|gif|svg)$/, loader: "file-loader", @@ -71,6 +84,12 @@ module.exports = { } }] }, + resolve: { + alias: { + 'jquery': require.resolve('jquery'), + 'jQuery': require.resolve('jquery'), + } + }, plugins: [ new webpack.ProvidePlugin({ $: "jquery",