Skip to content

Commit

Permalink
Merge pull request #1761 from Fdawgs/chore/2024-01
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Jan 25, 2024
2 parents 6f53979 + ca773e0 commit 307089c
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 286 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

79 changes: 0 additions & 79 deletions .github/ISSUE_TEMPLATE/bug_report.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/ISSUE_TEMPLATE/feature_request.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md

This file was deleted.

2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run lint:prettier && npm run lint:licenses && npm test
npm run lint:licenses && npm test
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
},
"javascript.updateImportsOnFileMove.enabled": "always",
"npm.packageManager": "npm",
"prettier.prettierPath": "./node_modules/prettier",
"redhat.telemetry.enabled": false,
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
Expand Down
127 changes: 0 additions & 127 deletions CODE_OF_CONDUCT.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ The underlying OpenAPI definitions are found at `/docs/openapi`.
Contributions are welcome, and any help is greatly appreciated!

See [the contributing guide](./CONTRIBUTING.md) for details on how to get started.
Please adhere to this project's [Code of Conduct](./CODE_OF_CONDUCT.md) when contributing.
Please adhere to this project's [Code of Conduct](https://github.com/Fdawgs/.github/blob/main/CODE_OF_CONDUCT.md) when contributing.

## License

Expand Down
13 changes: 0 additions & 13 deletions SECURITY.md

This file was deleted.

5 changes: 2 additions & 3 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
// Uncomment as and when needed
// "checkJs": true,
// "strict": true,
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"target": "ES2022"
"target": "ES2022",
},
"exclude": ["dist", "node_modules"]
"exclude": ["dist", "node_modules"],
}
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
"description": "RESTful API for converting clinical documents and files",
"main": "dist/app.js",
"type": "commonjs",
"repository": "git+https://github.com/Fdawgs/docsmith.git",
"repository": {
"type": "git",
"url": "git+https://github.com/Fdawgs/docsmith.git"
},
"homepage": "https://github.com/Fdawgs/docsmith",
"bugs": {
"url": "https://github.com/Fdawgs/docsmith/issues"
Expand All @@ -22,14 +25,15 @@
"jest": "jest",
"jest:coverage": "jest --coverage",
"lint": "eslint . --cache --ext js,jsx --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"lint:licenses": "node scripts/license-checker.js",
"lint:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -s -i",
"lint:prettier": "prettier . -c -u",
"lint:prettier:fix": "prettier . -w -u",
"prepare": "husky install && npx playwright install firefox --with-deps",
"start": "node .",
"start:dev": "nodemon src/app.js | pino-pretty",
"test": "npm run lint && npm run jest"
"test": "npm run lint && npm run lint:prettier && npm run jest"
},
"commitlint": {
"extends": [
Expand Down Expand Up @@ -94,7 +98,7 @@
"nodemon": "^3.0.2",
"pino-pretty": "^10.3.1",
"playwright": "^1.40.1",
"prettier": "^3.1.1",
"prettier": "^3.2.4",
"spdx-copyleft": "^1.0.0"
},
"dependencies": {
Expand All @@ -113,7 +117,6 @@
"clean-css": "^5.3.3",
"cssesc": "^3.0.0",
"cssom": "^0.5.0",
"dotenv": "^16.3.1",
"env-schema": "^5.2.1",
"fastify": "^4.25.2",
"fastify-disablecache": "^3.1.8",
Expand Down

0 comments on commit 307089c

Please sign in to comment.