@nordicsemiconductor/pc-nrfconnect-shared 85.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.
- package/.husky/pre-push +3 -0
- package/.renovaterc.json +10 -0
- package/Changelog.md +12 -1
- package/coverage/cobertura-coverage.xml +6592 -0
- package/jest.config.js +7 -0
- package/package.json +1 -18
- package/src/Dialog/Dialog.tsx +5 -1
- package/src/ErrorBoundary/ErrorBoundary.tsx +1 -1
- package/tailwind.config.js +11 -0
- package/typings/generated/src/Dialog/Dialog.d.ts.map +1 -1
package/.husky/pre-push
ADDED
package/.renovaterc.json
ADDED
package/Changelog.md
CHANGED
|
@@ -7,6 +7,17 @@ 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
|
+
|
|
10
21
|
## 85 - 2023-08-14
|
|
11
22
|
|
|
12
23
|
### Fixed
|
|
@@ -36,7 +47,7 @@ every new version is a new major version.
|
|
|
36
47
|
|
|
37
48
|
```json
|
|
38
49
|
{
|
|
39
|
-
"
|
|
50
|
+
"html": "dist/index.html"
|
|
40
51
|
}
|
|
41
52
|
```
|
|
42
53
|
|