Skip to content

Commit

Permalink
chore: make release-able by fixing repository in package.json
Browse files Browse the repository at this point in the history
Without this:

```
ERROR npm warn publish npm auto-corrected some errors in your package.json when publishing.  Please run "npm pkg fix" to address these errors.
```

Running `npm pkg fix` results in this change.
  • Loading branch information
chriskrycho committed Dec 22, 2024
1 parent fe6e203 commit 4a369fc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
"keywords": [
"ember-addon"
],
"repository": "[email protected]:emberjs/ember-render-modifiers.git",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/emberjs/ember-render-modifiers.git"
},
"license": "MIT",
"author": "Robert Jackson <me@rwjblue>",
"main": "index.js",
Expand Down

0 comments on commit 4a369fc

Please sign in to comment.