Skip to content

Commit 122dec5

Browse files
committed
Fix package.json repository issue
1 parent b3cfa90 commit 122dec5

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

addon/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
"keywords": [
66
"ember-addon"
77
],
8-
"repository": "https://github.com/fenichelar/ember-simple-auth-token",
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/fenichelar/ember-simple-auth-token.git"
11+
},
912
"license": "MIT",
1013
"author": {
1114
"name": "Alec Fenichel"

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "root",
33
"private": true,
4-
"repository": "https://github.com/fenichelar/ember-simple-auth-token",
4+
"repository": {
5+
"type": "git",
6+
"url": "git+https://github.com/fenichelar/ember-simple-auth-token.git"
7+
},
58
"license": "MIT",
69
"author": {
710
"name": "Alec Fenichel"
@@ -29,5 +32,6 @@
2932
"workspaces": [
3033
"addon",
3134
"test-app"
32-
]
35+
],
36+
"version": ""
3337
}

test-app/package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
"name": "test-app",
33
"private": true,
44
"description": "Test app for ember-simple-auth-token addon",
5-
"repository": "https://github.com/fenichelar/ember-simple-auth-token",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/fenichelar/ember-simple-auth-token.git"
8+
},
69
"license": "MIT",
710
"author": {
811
"name": "Alec Fenichel"
@@ -88,5 +91,6 @@
8891
},
8992
"ember": {
9093
"edition": "octane"
91-
}
94+
},
95+
"version": ""
9296
}

0 commit comments

Comments
 (0)