@leuffen/themejs1 8.1.2 → 8.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
"termin_url": {
|
|
57
57
|
"type": "string",
|
|
58
|
-
"description": "URL for appointments. If not provided in context use /
|
|
58
|
+
"description": "URL for appointments. If not provided in context use /termin as fallback"
|
|
59
59
|
},
|
|
60
60
|
"map_url": {
|
|
61
61
|
"type": "string",
|
|
@@ -38,7 +38,8 @@ module.exports = {
|
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
40
|
test: /\.(scss|css)$/,
|
|
41
|
-
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader']
|
|
41
|
+
use: [MiniCssExtractPlugin.loader, 'css-loader', {loader: 'sass-loader', options: {sassOptions: {includePaths: ["./node_modules"]}}}
|
|
42
|
+
],
|
|
42
43
|
include: [
|
|
43
44
|
path.resolve(__dirname, "src") // It should not be necessary to include workspaces here
|
|
44
45
|
]
|
package/package.json
CHANGED