-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Labels
bugSomething isn't workingSomething isn't workingquestionFurther information is requestedFurther information is requested
Description
When publishing an adapter, npm emits the following warning:
npm warn publish npm auto-corrected some errors in your package.json when publishing. Please run "npm pkg fix" to address these errors.
npm warn publish errors corrected:
npm warn publish "repository.url" was normalized to "git+ssh://git@github.com/user/ioBroker.adapter.git"
Currently we use:
create-adapter/templates/package.json.ts
Line 148 in a7cb62d
| : `git@github.com:${answers.authorGithub}/ioBroker.${answers.adapterName}.git`; |
This should be changed as follows:
- `git@github.com:${answers.authorGithub}/ioBroker.${answers.adapterName}.git`
+ `git+ssh://git@github.com/${answers.authorGithub}/ioBroker.${answers.adapterName}.git`Found with ioBroker/testing-action-deploy@v1
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingquestionFurther information is requestedFurther information is requested