Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move redox-hl7-v2 fork changes #1

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
54b4525
Tests that demonstrate parser and generator
x-aaron-moore Dec 19, 2021
f8a116d
Fix issue using a "jsonKey"
x-aaron-moore Dec 19, 2021
a3600e7
Use mergeWith instead of merge
x-aaron-moore Dec 21, 2021
7cf8973
Add working code of conduct link
nwhatt Jan 12, 2022
cf20fc5
Incorporate chaudhryjunaid's fix from
x-aaron-moore Jan 12, 2022
8656d73
Modify the chaudhryjunaid's after further testing.
x-aaron-moore Jan 12, 2022
71780b5
Merge pull request #3 from blendersfun/ambiguous_positional_segment_i…
nwhatt Jan 20, 2022
3563c4e
Create npm-publish.yml
nwhatt Jan 20, 2022
0312885
Minor version
nwhatt Jan 20, 2022
2cc6e9e
2.0.0
nwhatt Jan 20, 2022
2f5d53a
Create index.html
nwhatt Apr 26, 2022
3acfc30
Create main.322b303c.css
nwhatt Apr 26, 2022
d978bea
Create main.e377607b.js
nwhatt Apr 26, 2022
5d1add1
Update index.html
nwhatt Apr 26, 2022
1f03017
Update index.html
nwhatt Apr 26, 2022
38cf522
Update index.html
nwhatt Apr 26, 2022
ea6737a
Update index.html
nwhatt Apr 26, 2022
8d18193
Update index.html
nwhatt Apr 26, 2022
5a07602
Update index.html
nwhatt Apr 26, 2022
95f6fd4
Create style.scss
nwhatt Apr 26, 2022
b5fe3d4
Update index.html
nwhatt Apr 26, 2022
d9cf194
Update style.scss
nwhatt Apr 26, 2022
f2848a7
Update style.scss
nwhatt Apr 26, 2022
3081be9
Update index.html
nwhatt Apr 26, 2022
09b45e8
Update style.scss
nwhatt Apr 26, 2022
bde87a8
Set theme jekyll-theme-minimal
nwhatt Apr 27, 2022
b7cfe0f
Update index.html
nwhatt Apr 27, 2022
564f792
Update index.html
nwhatt Apr 27, 2022
a090770
Update README.md
nwhatt Apr 27, 2022
07e1598
Update index.html
nwhatt Apr 27, 2022
4b3ce32
add a parent div to see if the popover works
nwhatt Apr 27, 2022
ce8b5f0
add some margin + padding
nwhatt Apr 27, 2022
e69dbee
Update main.322b303c.css
nwhatt Apr 27, 2022
e166862
Update main.322b303c.css
nwhatt Apr 27, 2022
374977a
Merge branch 'master' into master
farhan2986 Oct 18, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Contributing to Redox

Contributions are always welcome. Before contributing please read the
[code of conduct](https://js.foundation/community/code-of-conduct). To contribute,
[code of conduct](https://github.com/openjs-foundation/cross-project-council/blob/main/CODE_OF_CONDUCT.md). To contribute,
[fork](https://help.github.com/articles/fork-a-repo/) the repository, commit your changes,
& [send a pull request](https://help.github.com/articles/using-pull-requests/).

Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Node.js Package

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: npm ci
- run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# node-hl7-v2
This is [Redox's](https://www.redoxengine.com/?utm_source=github&utm_medium=githublink&utm_campaign=open%20source) battle-tested in-house HL7v2 parser/generator.

The [online HL7v2 Parser](https://developer.redoxengine.com/hl7v2-tool/) can give you a sense of what it's capable of.
The [online HL7v2 Parser](https://redoxengine.github.io/redox-hl7-v2/) can give you a sense of what it's capable of.

Join us in public Slack channel to chat about this project:

Expand Down
1 change: 1 addition & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
theme: jekyll-theme-minimal
Loading