Skip to content

Commit

Permalink
Merge 70e89fd into 0d6e9d6
Browse files Browse the repository at this point in the history
  • Loading branch information
KD0NKS committed May 16, 2021
2 parents 0d6e9d6 + 70e89fd commit e3d3ed6
Show file tree
Hide file tree
Showing 13 changed files with 5,068 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ charset=utf-8
trim_trailing_whitespace=true
insert_final_newline=false

[*.json]
[*.{json,yaml,yml}]
indent_size = 2
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 @@
name: npm-publish

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
check-latest: true
registry-url: 'https://registry.npmjs.org'

- name: npm ci
run: npm ci

- name: npm build
run: npm run build

- name: npm publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

# publish
# - name: npm publish
# run: npm publish
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ lib/
dist/
.nyc_output/

package-lock.json
yarn.lock
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.github
.nyc_output
.vscode
build/
coverage/
lib/
.nyc_output
node_modules/

package-lock.json
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ is listed here is directly copied from the original repository.

## Goals - work in progress
- Be lightweight
- Consuming world stream with Celeron 900 processor, 4GB ram, while utilizing the machine for development.
- Parse all message types
- Respond appropriately to all queries
- Implement full APRS spec
- Full code coverage with unit tests

## Implemented features - parse
Expand Down
2 changes: 2 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import aprsParser from './src/parser'
import { ConversionConstantEnum, PacketTypeEnum } from './src/enums'
import digipeater from './src/digipeater'
import telemetry from './src/telemetry'
import { ConversionUtil } from './src/utils/ConversionUtil'
import wx from './src/wx'

export {
aprsPacket
, aprsParser
, ConversionConstantEnum
, ConversionUtil
, digipeater
, PacketTypeEnum
, telemetry
Expand Down

0 comments on commit e3d3ed6

Please sign in to comment.