@signageos/front-display 14.11.1 → 14.12.1

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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [14.12.1] - 2025-02-11
8
+ ### Fixed
9
+ - Problem with WS after network change
10
+
11
+ ## [14.12.0] - 2025-02-10
12
+ ### Added
13
+ - Support for mdc commands in custom script
14
+
7
15
  ## [14.11.1] - 2025-02-10
8
16
  ### Fixed
9
17
  - (internal) Updated to the latest version of `lib/bundler` to avoid using the current working directory
package/README.md CHANGED
@@ -11,6 +11,18 @@ npx husky install # only for the first time
11
11
  npm run develop
12
12
  ```
13
13
 
14
+ :exclamation: There is a known issue where files transpiled to ES5 during the build process are rewritten back to ES6 when using the `npm run develop` command. This issue does not block development with modern ES6-compliant browsers, but you must always verify functionality in the lowest version of the browser that the code targets. To address this, follow these steps:
15
+
16
+ ```bash
17
+ # In one terminal window, run:
18
+ esbuild --serve=8080 --servedir=dist
19
+
20
+ # In a second terminal window, rebuild the code:
21
+ npm run build
22
+ ```
23
+
24
+ Then, check the application in an older browser to ensure compatibility.
25
+
14
26
  ## Testing
15
27
  To run **unit** and **integration** tests in Node.js environment use the following command:
16
28
  ```bash