Skip to content

Commit fccd2db

Browse files
committed
fix: Add repostiory field to package.json files
1 parent 2c25235 commit fccd2db

File tree

7 files changed

+28
-0
lines changed

7 files changed

+28
-0
lines changed

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
"name": "@spotify/web-scripts-monorepo",
33
"private": true,
44
"license": "Apache-2.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/spotify/web-scripts.git"
8+
},
59
"scripts": {
610
"test": "lerna run test --stream",
711
"build": "lerna run build --stream",

packages/eslint-config-base/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
"peerDependencies": {
88
"eslint": ">=5.x"
99
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/spotify/web-scripts.git"
13+
},
1014
"publishConfig": {
1115
"access": "public"
1216
},

packages/eslint-config-react/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"version": "1.1.0",
44
"license": "Apache-2.0",
55
"description": "Spotify's ESLint config for React projects",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/spotify/web-scripts.git"
9+
},
610
"main": "index.js",
711
"devDependencies": {
812
"eslint": "^5.16.0",

packages/eslint-config-typescript/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
"@typescript-eslint/parser": "^1.11.0",
1010
"eslint": "^5.16.0"
1111
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/spotify/web-scripts.git"
15+
},
1216
"peerDependencies": {
1317
"@typescript-eslint/eslint-plugin": ">=1.5 <2",
1418
"@typescript-eslint/parser": ">=1.5 <2",

packages/prettier-config/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"version": "1.1.0",
44
"license": "Apache-2.0",
55
"description": "Spotify's base Prettier config",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/spotify/web-scripts.git"
9+
},
610
"main": "index.js",
711
"devDependencies": {
812
"prettier": "^1.18.2"

packages/tsconfig/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"version": "1.1.0",
44
"license": "Apache-2.0",
55
"description": "Common tsconfigs to be used as your base configurations",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/spotify/web-scripts.git"
9+
},
610
"files": [
711
"tsconfig.*.json"
812
],

packages/web-scripts/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"version": "1.1.0",
44
"license": "Apache-2.0",
55
"description": "Build, lint, test, format, and release your JS/TS library.",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/spotify/web-scripts.git"
9+
},
610
"main": "cjs/index.js",
711
"module": "esm/index.js",
812
"types": "types",

0 commit comments

Comments
 (0)