fhir-react 1.0.2 → 2.0.1-beta.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/.github/workflows/publish_npmjs.yml +10 -5
- package/CHANGELOG.md +9 -0
- package/build/index.js +6 -25
- package/package.json +11 -10
- package/src/components/resources/Observation/Observation.js +1 -1
- package/src/components/resources/Observation/Observation.test.js +3 -1
- package/webpack.config.js +1 -0
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
name: Publish Package to npmjs
|
|
2
2
|
on:
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
workflow_dispatch:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
5
7
|
jobs:
|
|
6
8
|
build:
|
|
7
9
|
runs-on: ubuntu-latest
|
|
10
|
+
permissions:
|
|
11
|
+
id-token: write
|
|
12
|
+
contents: read
|
|
8
13
|
steps:
|
|
9
|
-
- uses: actions/checkout@
|
|
14
|
+
- uses: actions/checkout@v6
|
|
10
15
|
# Setup .npmrc file to publish to npm
|
|
11
|
-
- uses: actions/setup-node@
|
|
16
|
+
- uses: actions/setup-node@v6
|
|
12
17
|
with:
|
|
13
|
-
node-version: '
|
|
18
|
+
node-version: '20.x'
|
|
14
19
|
registry-url: 'https://registry.npmjs.org'
|
|
15
20
|
- run: npm ci
|
|
16
21
|
- run: npm run build
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
Changelog format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
|
+
|
|
5
|
+
## 2.0.0
|
|
6
|
+
|
|
7
|
+
### Updated
|
|
8
|
+
|
|
9
|
+
- Updated versions on react and react-dom
|
|
10
|
+
- Moved react-dom to dependencies
|
|
11
|
+
|
|
4
12
|
## 1.0.1
|
|
5
13
|
|
|
6
14
|
### Changed
|
|
15
|
+
|
|
7
16
|
- The package/lock files to match the license of MIT in the license file
|
|
8
17
|
- Removed references to storybook S3 bucket that no longer exists
|
|
9
18
|
|