Skip to content

Commit

Permalink
Fix package.json repository issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fenichelar committed Sep 24, 2024
1 parent b3cfa90 commit 122dec5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
5 changes: 4 additions & 1 deletion addon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
"keywords": [
"ember-addon"
],
"repository": "https://github.com/fenichelar/ember-simple-auth-token",
"repository": {
"type": "git",
"url": "git+https://github.com/fenichelar/ember-simple-auth-token.git"
},
"license": "MIT",
"author": {
"name": "Alec Fenichel"
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"name": "root",
"private": true,
"repository": "https://github.com/fenichelar/ember-simple-auth-token",
"repository": {
"type": "git",
"url": "git+https://github.com/fenichelar/ember-simple-auth-token.git"
},
"license": "MIT",
"author": {
"name": "Alec Fenichel"
Expand Down Expand Up @@ -29,5 +32,6 @@
"workspaces": [
"addon",
"test-app"
]
],
"version": ""
}
8 changes: 6 additions & 2 deletions test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"name": "test-app",
"private": true,
"description": "Test app for ember-simple-auth-token addon",
"repository": "https://github.com/fenichelar/ember-simple-auth-token",
"repository": {
"type": "git",
"url": "git+https://github.com/fenichelar/ember-simple-auth-token.git"
},
"license": "MIT",
"author": {
"name": "Alec Fenichel"
Expand Down Expand Up @@ -88,5 +91,6 @@
},
"ember": {
"edition": "octane"
}
},
"version": ""
}

0 comments on commit 122dec5

Please sign in to comment.