@nordicsemiconductor/pc-nrfconnect-shared 84.0.0 → 86.0.0

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.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env sh
2
+ . "$(dirname -- "$0")/_/husky.sh"
3
+ npm run check && npm t
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": ["config:base", "group:allNonMajor"],
3
+ "packageRules": [
4
+ {
5
+ "groupName": "Prettier",
6
+ "matchPackageNames": ["prettier"],
7
+ "matchUpdateTypes": ["minor", "patch"]
8
+ }
9
+ ]
10
+ }
package/Changelog.md CHANGED
@@ -7,6 +7,23 @@ This project does _not_ adhere to
7
7
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html) but contrary to it
8
8
  every new version is a new major version.
9
9
 
10
+ ## 86 - 2023-08-14
11
+
12
+ ### Changed
13
+
14
+ - Use npmignore instead of files array in package.json for deciding what gets
15
+ packed.
16
+
17
+ ### Fixed
18
+
19
+ - `Spinner` now has old padding which was mistakenly removed.
20
+
21
+ ## 85 - 2023-08-14
22
+
23
+ ### Fixed
24
+
25
+ - `getDisplayedDeviceName` could return an empty string.
26
+
10
27
  ## 84 - 2023-08-14
11
28
 
12
29
  ### Changed
@@ -30,7 +47,7 @@ every new version is a new major version.
30
47
 
31
48
  ```json
32
49
  {
33
- "index": "dist/index.html"
50
+ "html": "dist/index.html"
34
51
  }
35
52
  ```
36
53