@rws-framework/client 2.18.9 → 2.18.10

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.
@@ -4,7 +4,8 @@ function processEnvDefines(BuildConfigurator, config, devDebug) {
4
4
  let _rws_defines = {
5
5
  'process.env._RWS_DEV_DEBUG': JSON.stringify(devDebug),
6
6
  'process.env._RWS_DEFAULTS': JSON.stringify(BuildConfigurator.exportDefaultConfig()),
7
- 'process.env._RWS_BUILD_OVERRIDE': JSON.stringify(BuildConfigurator.exportBuildConfig())
7
+ 'process.env._RWS_BUILD_OVERRIDE': JSON.stringify(BuildConfigurator.exportBuildConfig()),
8
+ 'process.env.TZ': JSON.stringify(process.env.TZ || 'Europe/Warsaw')
8
9
  }
9
10
 
10
11
  const rwsDefines = BuildConfigurator.get('env') || config.env || null;
@@ -51,7 +51,8 @@ async function createWebpackConfig({
51
51
  },
52
52
  fallback: {
53
53
  fs: false,
54
- path: false
54
+ path: false,
55
+ child_process: false
55
56
  }
56
57
  },
57
58
  devServer: hotReload ? getRWSHotReloadSetup(hotReloadPort, outputDir) : false,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/client",
3
3
  "private": false,
4
- "version": "2.18.9",
4
+ "version": "2.18.10",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"
@@ -30,7 +30,7 @@ $mediaQuerySteps: (
30
30
  @mixin grid-column($columns: 12, $mdColumns: 12) {
31
31
  @include internal-grid-column($columns);
32
32
 
33
- @media screen and (max-width: map-get($mediaQuerySteps, 'md')) {
33
+ @media screen and (max-width: map.get($mediaQuerySteps, 'md')) {
34
34
  @include internal-grid-column($mdColumns);
35
35
  }
36
36
  }
@@ -38,11 +38,11 @@ $mediaQuerySteps: (
38
38
  @mixin grid-column($columns: 12, $mdColumns: 12, $smColumns: 12) {
39
39
  @include internal-grid-column($columns);
40
40
 
41
- @media screen and (max-width: map-get($mediaQuerySteps, 'md')) {
41
+ @media screen and (max-width: map.get($mediaQuerySteps, 'md')) {
42
42
  @include internal-grid-column($mdColumns);
43
43
  }
44
44
 
45
- @media screen and (max-width: map-get($mediaQuerySteps, 'sm')) {
45
+ @media screen and (max-width: map.get($mediaQuerySteps, 'sm')) {
46
46
  @include internal-grid-column($smColumns);
47
47
  }
48
48
  }
@@ -50,15 +50,15 @@ $mediaQuerySteps: (
50
50
  @mixin grid-column($columns: 12, $mdColumns: 12, $smColumns: 12, $xsColumns: 12) {
51
51
  @include internal-grid-column($columns);
52
52
 
53
- @media screen and (max-width: map-get($mediaQuerySteps, 'md')) {
53
+ @media screen and (max-width: map.get($mediaQuerySteps, 'md')) {
54
54
  @include internal-grid-column($mdColumns);
55
55
  }
56
56
 
57
- @media screen and (max-width: map-get($mediaQuerySteps, 'sm')) {
57
+ @media screen and (max-width: map.get($mediaQuerySteps, 'sm')) {
58
58
  @include internal-grid-column($smColumns);
59
59
  }
60
60
 
61
- @media screen and (max-width: map-get($mediaQuerySteps, 'xs')) {
61
+ @media screen and (max-width: map.get($mediaQuerySteps, 'xs')) {
62
62
  @include internal-grid-column($xsColumns);
63
63
  }
64
64
  }
@@ -1,3 +1,5 @@
1
+ @use "sass:map";
2
+
1
3
  @import "_misc";
2
4
  @import "_scrollbars";
3
5
  @import "_grid";