Skip to content

Commit

Permalink
release: [email protected] [skip ci]
Browse files Browse the repository at this point in the history
## 1.0.0 (2022-10-19)

#### ⚙️ Build system

* **package:** defer to jest.config.js for coverage options ([05cd09e](05cd09e))
* **packages:** add node export condition to packages ([cfa7557](cfa7557))
* **package:** use actual test ignore regex pattern ([6358888](6358888))
  • Loading branch information
Xunnamius committed Oct 19, 2022
1 parent 294c937 commit cd63a38
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 2 deletions.
30 changes: 30 additions & 0 deletions packages/remark-ignore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Changelog

All notable changes to this project will be documented in this auto-generated
file. The format is based on [Conventional Commits][4]; this project adheres to
[Semantic Versioning][5].

## 1.0.0 (2022-10-19)

#### ⚙️ Build system

- **package:** defer to jest.config.js for coverage options ([05cd09e][1])
- **packages:** add node export condition to packages ([cfa7557][2])
- **package:** use actual test ignore regex pattern ([6358888][3])

## 1.0.0 (2022-10-19)

#### ⚙️ Build system

- **package:** defer to jest.config.js for coverage options ([05cd09e][1])
- **packages:** add node export condition to packages ([cfa7557][2])
- **package:** use actual test ignore regex pattern ([6358888][3])

[1]:
https://github.com/Xunnamius/unified-utils/commit/05cd09e0cf13f18fa56f6156516bcf546b1238e6
[2]:
https://github.com/Xunnamius/unified-utils/commit/cfa755794380abeda2748bb0a86f99b0bb136198
[3]:
https://github.com/Xunnamius/unified-utils/commit/63588887a7377f3ee7488b19c87f1f2bf1faa811
[4]: https://conventionalcommits.org
[5]: https://semver.org
24 changes: 22 additions & 2 deletions packages/remark-ignore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@
"sideEffects": false,
"type": "commonjs",
"exports": {
"./start": {
"types": "./dist/start.d.ts",
"node": "./dist/start.mjs",
"default": "./dist/start.mjs"
},
"./end": {
"types": "./dist/end.d.ts",
"node": "./dist/end.mjs",
"default": "./dist/end.mjs"
},
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.mjs",
Expand All @@ -33,6 +43,12 @@
},
"typesVersions": {
"*": {
"start": [
"./dist/start.d.ts"
],
"end": [
"./dist/end.d.ts"
],
"*": [
"./dist/index.d.ts"
]
Expand All @@ -53,7 +69,7 @@
"format": "cd ../.. && npm run format",
"lint": "echo 'IMPLEMENT ME'",
"list-tasks": "node -e 'console.log(Object.keys(require(\"./package.json\").scripts).join(\"\\n\"))'",
"test": "npm run test-unit --",
"test": "npm run test:unit --",
"test:integration": "echo 'IMPLEMENT ME'",
"test:unit": "echo 'IMPLEMENT ME'"
},
Expand All @@ -64,7 +80,11 @@
}
}
},
"dependencies": {},
"dependencies": {
"mdast-comment-marker": "^2.1.0",
"mdast-util-hidden": "^1.0.0",
"unist-util-visit": "^4.1.1"
},
"engines": {
"node": "^14.19.0 || ^16.13.0 || >=17.4.0"
},
Expand Down

0 comments on commit cd63a38

Please sign in to comment.