Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update package.json docs #780

Merged
merged 12 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion esbuild.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ module.exports = {
);

packageJson.license = rootPackageJson.license;
packageJson.homepage = rootPackageJson.homepage;
if (project.name === 'cli') {
packageJson.homepage = rootPackageJson.homepage;
} else {
packageJson.homepage = `https://github.com/code-pushup/cli/tree/main/packages/${project.name}#readme`;
}
packageJson.bugs = rootPackageJson.bugs;
packageJson.repository = {
...rootPackageJson.repository,
Expand Down
30 changes: 2 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,15 @@
"name": "@code-pushup/cli-source",
"version": "0.0.0",
"license": "MIT",
"homepage": "https://github.com/code-pushup/cli#readme",
"description": "A CLI to run all kinds of code quality measurements to align your team with company goals",
"homepage": "code-pushup.dev",
"bugs": {
"url": "https://github.com/code-pushup/cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-pushup/cli.git"
},
"contributors": [
{
"name": "Igor Katsuba",
"email": "[email protected]",
"url": "https://katsuba.dev"
},
{
"name": "Kateřina Pilátová",
"email": "[email protected]",
"url": "https://github.com/Tlacenka"
},
{
"name": "Matěj Chalk",
"email": "[email protected]",
"url": "https://github.com/matejchalk"
},
{
"name": "Michael Hladky",
"email": "[email protected]",
"url": "https://push-based.io"
},
{
"name": "Michael Seredenko",
"email": "[email protected]",
"url": "https://github.com/MishaSeredenkoPushBased"
}
],
"scripts": {
"prepare": "husky install",
"commit": "git-cz",
Expand Down
1 change: 1 addition & 0 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@code-pushup/cli",
"version": "0.49.0",
"license": "MIT",
"description": "A CLI to run all kinds of code quality measurements to align your team with company goals",
"bin": {
"code-pushup": "index.js"
},
Expand Down
5 changes: 2 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
"name": "@code-pushup/core",
"version": "0.49.0",
"license": "MIT",
"description": "Core business logic for the used by the Code PushUp CLI",
"dependencies": {
"@code-pushup/models": "0.49.0",
"@code-pushup/utils": "0.49.0",
"@code-pushup/portal-client": "^0.9.0",
"ansis": "^3.3.0"
},
"type": "commonjs",
"main": "./index.cjs"
}
}
1 change: 1 addition & 0 deletions packages/models/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@code-pushup/models",
"version": "0.49.0",
"license": "MIT",
"description": "Model definitions and validators for the Code PushUp CLI",
"dependencies": {
"zod": "^3.22.1",
"vscode-material-icons": "^0.1.0"
Expand Down
1 change: 1 addition & 0 deletions packages/nx-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@code-pushup/nx-plugin",
"version": "0.29.0",
"license": "MIT",
"description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
"dependencies": {
"@nx/devkit": "^17.1.3",
"tslib": "2.6.2",
Expand Down
1 change: 1 addition & 0 deletions packages/plugin-coverage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@code-pushup/coverage-plugin",
"version": "0.49.0",
"description": "Code PushUp plugin for tracking code coverage ☂",
"dependencies": {
"@code-pushup/models": "0.49.0",
"@code-pushup/utils": "0.49.0",
Expand Down
1 change: 1 addition & 0 deletions packages/plugin-eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@code-pushup/eslint-plugin",
"version": "0.49.0",
"license": "MIT",
"description": "Code PushUp plugin for detecting problems in source code using ESLint.📋",
"dependencies": {
"@code-pushup/utils": "0.49.0",
"@code-pushup/models": "0.49.0",
Expand Down
1 change: 1 addition & 0 deletions packages/plugin-js-packages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@code-pushup/js-packages-plugin",
"version": "0.49.0",
"description": "Code PushUp plugin for JavaScript packages 🛡️",
"dependencies": {
"@code-pushup/models": "0.49.0",
"@code-pushup/utils": "0.49.0",
Expand Down
1 change: 1 addition & 0 deletions packages/plugin-lighthouse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@code-pushup/lighthouse-plugin",
"version": "0.49.0",
"license": "MIT",
"description": "Code PushUp plugin for measuring web performance and quality with Lighthouse 🔥",
"dependencies": {
"@code-pushup/models": "0.49.0",
"@code-pushup/utils": "0.49.0",
Expand Down
1 change: 1 addition & 0 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@code-pushup/utils",
"version": "0.49.0",
"description": "Low-level utilities (helper functions, etc.) used by Code PushUp CLI",
"dependencies": {
"@code-pushup/models": "0.49.0",
"@isaacs/cliui": "^8.0.2",
Expand Down