@nordicsemiconductor/pc-nrfconnect-shared 85.0.0 → 87.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
+ ## 87 - 2023-08-14
11
+
12
+ ### Fixed
13
+
14
+ - Spinner in `Dialog` components was not inlined.
15
+
16
+ ## 86 - 2023-08-14
17
+
18
+ ### Changed
19
+
20
+ - Use npmignore instead of files array in package.json for deciding what gets
21
+ packed.
22
+
23
+ ### Fixed
24
+
25
+ - `Spinner` now has old padding which was mistakenly removed.
26
+
10
27
  ## 85 - 2023-08-14
11
28
 
12
29
  ### Fixed
@@ -36,7 +53,7 @@ every new version is a new major version.
36
53
 
37
54
  ```json
38
55
  {
39
- "index": "dist/index.html"
56
+ "html": "dist/index.html"
40
57
  }
41
58
  ```
42
59