import { hasJsonFile } from 'commonality-checks-recommended'; export default hasJsonFile('package.json', { scripts: { build: 'tsc --build', dev: 'tsc --watch', }, });
{ "checks": [ "buildable": [ "has-build-scripts" ] ] }
.npmignore
dist
*.test.*
import { hasText } from 'commonality-checks-recommended'; export default hasText('.npmignore', ['dist']);
{ "checks": [ "publishable": [ "has-npm-ignore" ] ] }
Was this page helpful?