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

feat: add renovate-schema.json to published package #17235

Merged
merged 5 commits into from
Aug 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"clean-cache": "node tools/clean-cache.mjs",
"compile:ts": "tsc -p tsconfig.app.json",
"config-validator": "node -r ts-node/register/transpile-only -- lib/config-validator.ts",
robertkowalski marked this conversation as resolved.
Show resolved Hide resolved
"create-json-schema": "node -r ts-node/register/transpile-only -- tools/generate-schema.ts && prettier --write --cache \"renovate-schema.json\"",
"debug": "node --inspect-brk -r ts-node/register/transpile-only -- lib/renovate.ts",
"doc-fix": "run-s markdown-lint-fix prettier-fix",
"doc-fence-check": "node tools/check-fenced-code.mjs",
"eslint": "eslint . --cache --report-unused-disable-directives",
"eslint-fix": "eslint --cache --fix . --report-unused-disable-directives",
"generate": "run-s generate:*",
"generate:imports": "node tools/generate-imports.mjs",
"generate:json-schema": "node -r ts-node/register/transpile-only -- tools/generate-schema.ts && prettier --write --cache \"renovate-schema.json\"",
robertkowalski marked this conversation as resolved.
Show resolved Hide resolved
"git-check": "node tools/check-git-version.mjs",
"jest": "cross-env LOG_LEVEL=fatal jest --logHeapUsage",
"jest:14": "run-s \"jest {@}\" --",
Expand Down Expand Up @@ -48,7 +48,7 @@
"test": "run-s lint test-schema type-check strict-check jest",
"test-dirty": "git diff --exit-code",
"test-e2e": "yarn pack && cd test/e2e && yarn install --no-lockfile --ignore-optional --prod && yarn test",
"test-schema": "run-s create-json-schema",
"test-schema": "run-s generate:json-schema",
robertkowalski marked this conversation as resolved.
Show resolved Hide resolved
"tsc": "tsc",
"type-check": "run-s generate:* \"tsc --noEmit {@}\" --",
"update-static-data": "run-s update-static-data:*",
Expand Down Expand Up @@ -311,6 +311,7 @@
"**/json-schema": "^0.4.0"
},
"files": [
"dist"
"dist",
"renovate-schema.json"
]
}