https://github.com/koumoul-dev/ademe-rge
https://github.com/koumoul-dev/ademe-rge
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/koumoul-dev/ademe-rge
- Owner: koumoul-dev
- Created: 2021-02-12T09:27:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-10T12:17:09.000Z (about 2 years ago)
- Last Synced: 2025-02-16T10:16:04.290Z (8 months ago)
- Language: JavaScript
- Size: 1.11 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ADEME RGE processing script
Generates an historical file from data from qualification organisms
## Running tests
Install dependencies:
```
npm install
```Create a `config/local-test.js` file with the same structure as `config/default.js` but with filled values.
Then run the test suite:```
npm test
```## Release
Processing plugins are fetched from the npm registry with a filter on keyword "data-fair-processings-plugin". So publishing a plugin is as simple as publishing the npm package:
```
npm version minor
npm publish
git push && git push --tags
```To publish a test version, use prerelease versioning with a "test" npm tag:
```
# new prerelease
npm version preminor --preid=beta
# increment prerelease
npm version prerelease --preid=beta
npm publish --tag=test
git push && git push --tags
```