Skip to content

Commit

Permalink
chore: add homepage and repo directory to package.jsons (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximepvrt authored Nov 8, 2023
1 parent fb3e4a0 commit 1d86e40
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 4 deletions.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"type": "module",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/devtools.git"
},
"packageManager": "[email protected]",

Check failure on line 10 in package.json

View workflow job for this annotation

GitHub Actions / ci

Expected object keys to be in specified order. 'packageManager' should be before 'repository'
"scripts": {
"build": "pnpm -r --filter=\"./packages/**/*\" run build",
Expand Down
7 changes: 6 additions & 1 deletion packages/devtools-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"type": "module",
"version": "1.0.0",
"license": "MIT",
"repository": "nuxt/devtools",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/devtools.git",
"directory": "packages/devtools-kit"
},
"homepage": "https://devtools.nuxt.com/module/utils-kit",

Check failure on line 11 in packages/devtools-kit/package.json

View workflow job for this annotation

GitHub Actions / ci

Expected object keys to be in specified order. 'homepage' should be before 'repository'
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand Down
7 changes: 6 additions & 1 deletion packages/devtools-ui-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"type": "module",
"version": "1.0.0",
"license": "MIT",
"repository": "nuxt/devtools",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/devtools.git",
"directory": "packages/devtools-ui-kit"
},
"homepage": "https://devtools.nuxt.com/module/ui-kit",

Check failure on line 11 in packages/devtools-ui-kit/package.json

View workflow job for this annotation

GitHub Actions / ci

Expected object keys to be in specified order. 'homepage' should be before 'repository'
"exports": {
".": {
"import": "./dist/module.mjs",
Expand Down
7 changes: 6 additions & 1 deletion packages/devtools-wizard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
"version": "1.0.0",
"description": "CLI Wizard to toggle Nuxt DevTools",
"license": "MIT",
"repository": "nuxt/devtools",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/devtools.git",
"directory": "packages/devtools-wizard"
},
"homepage": "https://devtools.nuxt.com",

Check failure on line 12 in packages/devtools-wizard/package.json

View workflow job for this annotation

GitHub Actions / ci

Expected object keys to be in specified order. 'homepage' should be before 'repository'
"main": "./dist/index.mjs",
"bin": "./cli.mjs",
"files": [
Expand Down
7 changes: 6 additions & 1 deletion packages/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"type": "module",
"version": "1.0.0",
"license": "MIT",
"repository": "nuxt/devtools",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/devtools.git",
"directory": "packages/devtools"
},
"homepage": "https://devtools.nuxt.com",

Check failure on line 11 in packages/devtools/package.json

View workflow job for this annotation

GitHub Actions / ci

Expected object keys to be in specified order. 'homepage' should be before 'repository'
"exports": {
".": {
"types": "./dist/module.d.ts",
Expand Down

0 comments on commit 1d86e40

Please sign in to comment.