Skip to content

Commit

Permalink
refactor: merge fixes for suggestions from @ChristianMurphy (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
LuudJanssen authored Mar 4, 2024
2 parents 6c2915e + 04a33b8 commit f7df44a
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 76 deletions.
3 changes: 3 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@
"infile": "CHANGELOG.md",
"header": "# Changelog"
}
},
"hooks": {
"after:@release-it/conventional-changelog:beforeRelease": "pnpm prettier --write CHANGELOG.md"
}
}
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

## 1.0.0 (2024-03-03)


### Features

* add tests and fix small issues ([0a92b02](https://github.com/incentro-dc/remark-github-admonitions-to-directives/commit/0a92b02bb2e6ff19b0d3ca01161645a7e5e58572))
* initial commit ([7245e0b](https://github.com/incentro-dc/remark-github-admonitions-to-directives/commit/7245e0bc6ac24938f53ccec8ad7c5d49af28cdbd))
- add tests and fix small issues ([0a92b02](https://github.com/incentro-dc/remark-github-admonitions-to-directives/commit/0a92b02bb2e6ff19b0d3ca01161645a7e5e58572))
- initial commit ([7245e0b](https://github.com/incentro-dc/remark-github-admonitions-to-directives/commit/7245e0bc6ac24938f53ccec8ad7c5d49af28cdbd))
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.jss",
"main": "./dist/index.js",
"files": [
"dist/**"
],
Expand All @@ -41,18 +41,19 @@
"lint": "pnpm run \"/^lint:.*/\"",
"lint:prettier": "prettier --check . --cache",
"lint:typescript": "tsc --noEmit",
"prepack": "pnpm run build",
"prepack": "pnpm run clean:build && pnpm run build",
"release": "release-it",
"test": "vitest"
},
"dependencies": {
"@types/mdast": "^4.0.3",
"mdast-util-directive": "^3.0.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@tsconfig/strictest": "^2.0.3",
"@types/mdast": "^4.0.3",
"mdast-util-directive": "^3.0.0",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.4.12",
Expand All @@ -61,7 +62,6 @@
"remark-directive": "^3.0.0",
"rimraf": "^5.0.5",
"typescript": "~5.2.2",
"unified": "^11.0.4",
"vitest": "^1.3.1"
}
}
Loading

0 comments on commit f7df44a

Please sign in to comment.