Skip to content

Commit

Permalink
feat: add homepage to package.json (#985)
Browse files Browse the repository at this point in the history
## Proposed change

<!-- Please include a summary of the changes and the related issue.
Please also include relevant motivation and context. List any
dependencies that is required for this change. -->

## Related issues

- 🐛 Fixes #(issue)
- 🚀 Feature #(issue)

<!-- Please make sure to follow the contributing guidelines on
https://github.com/amadeus-digital/Otter/blob/main/CONTRIBUTING.md -->
  • Loading branch information
kpanot authored Oct 31, 2023
2 parents 21f0d3a + 6052770 commit f52a3fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"editorconfig-checker -exclude \".*[\\\\/]templates[\\\\/].*\" -ignore-defaults --verbose"
]
},
"homepage": "https://amadeusitgroup.github.io/otter/",
"repository": "https://github.com/AmadeusITGroup/otter",
"bugs": "https://github.com/AmadeusITGroup/otter/issues",
"license": "BSD-3-Clause",
Expand Down
2 changes: 1 addition & 1 deletion tools/@o3r/build-helpers/scripts/prepare-publish.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { dirname, join, resolve } from 'node:path';

const argv = minimist(process.argv.slice(2));
const root = argv.root ? resolve(process.cwd(), argv.root) : process.cwd();
const /** @type { string[] } */ fields = argv.fields?.split(',') || ['contributors', 'bugs', 'repository', 'license'];
const /** @type { string[] } */ fields = argv.fields?.split(',') || ['contributors', 'bugs', 'repository', 'license', 'homepage'];

/**
* Find Private package.json
Expand Down

0 comments on commit f52a3fb

Please sign in to comment.