Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dvsa/appdev-packages
Common package to be used in CVS microservices
https://github.com/dvsa/appdev-packages
Last synced: 13 days ago
JSON representation
Common package to be used in CVS microservices
- Host: GitHub
- URL: https://github.com/dvsa/appdev-packages
- Owner: dvsa
- Created: 2024-01-25T09:07:04.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-12-05T15:46:37.000Z (23 days ago)
- Last Synced: 2024-12-05T16:36:50.519Z (23 days ago)
- Language: TypeScript
- Size: 3.27 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# AppDev Packages
A mono-repository for AppDev packages.
The components can be found in the `packages/*` directory.
## Adding new packages
When adding a new package, the best approach is to create a new directory under `packages/*` & run `npm init -y`
This will create a basic `package.json` file which can be updated with the relevant information.
### VSCode
If you are using the `vscode-jest` runner extension you will need to add your new package to the settings file in `.vscode/settings.json`. This enables the extension to navigate symlink directories and correctly run package tests.
## Deploying new packages
There is a [publish.yaml](./.github/workflows/publish.yaml) GitHub action integrated into the repo, that can be used to publish new packages to the NPM registry.
You need to add a new step into the `Orchestrator` to listen out for changed files in the desired package.
You can then replicate the pattern of publishing like so
```bash
publish-[PKG]:
needs: orchestrator
runs-on: ubuntu-latest
if: ${{ needs.orchestrator.outputs.publish-[PKG] || github.event_name == 'workflow_dispatch' && inputs.package == [PKG]}}
steps:
- name: Publish Package
uses: ./.github/actions/publish-package
with:
package-path: 'packages/[PKG]'
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
```