Skip to content

Commit

Permalink
Merge pull request #256 from jaredwray/upgrading-xo-to-0.58.0
Browse files Browse the repository at this point in the history
upgrading xo to 0.58.0
  • Loading branch information
jaredwray committed Mar 30, 2024
2 parents 759f267 + d9f7b69 commit 21723a6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ You can contribute changes to this repo by opening a pull request:

1) After forking this repository to your Git account, make the proposed changes on your forked branch.
2) Run tests and linting locally.
- Run `yarn test`.
- Run `npm install && npm test`.
3) Commit your changes and push them to your forked repository.
4) Navigate to the main `writr` repository and select the *Pull Requests* tab.
5) Click the *New pull request* button, then select the option "Compare across forks"
Expand Down
4 changes: 3 additions & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ This project is updated on a monthly basis unless there are security issues that

| Version | Supported |
| ------- | ------------------ |
| >1.0.0 | :white_check_mark: |
| >3.0.0 | :white_check_mark: |
| 2.0.0 | not supported |
| 1.0.0 | not supported |


## Reporting a Vulnerability
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"scripts": {
"clean": "rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./site/README.md ./site-output",
"build": "rimraf ./dist && tsc",
"site-build": "rimraf ./site/README.md ./site-output && npx docula build -s ./site -o ./site-output",
"site-serve": "rimraf ./site/README.md ./site-output && npx docula serve -s ./site -o ./site-output",
"test": "xo --fix && vitest run --coverage",
"prepare": "yarn run build"
"prepare": "npm run build",
"website:build": "rimraf ./site/README.md ./site-output && npx docula build -s ./site -o ./site-output",
"website:serve": "rimraf ./site/README.md ./site-output && npx docula serve -s ./site -o ./site-output"
},
"dependencies": {
"html-react-parser": "^5.1.8",
Expand Down Expand Up @@ -73,7 +73,7 @@
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"webpack": "^5.90.3",
"xo": "^0.57.0"
"xo": "^0.58.0"
},
"xo": {
"ignores": [
Expand Down
1 change: 1 addition & 0 deletions vitest.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export default defineConfig({
coverage: {
exclude: [
'site/docula.config.cjs',
'site-output/**',
],
},
},
Expand Down

0 comments on commit 21723a6

Please sign in to comment.