Skip to content

Commit

Permalink
chore(release): version packages (beta) (#155)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jul 11, 2024
1 parent f65ad35 commit 24ce25f
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 5 deletions.
10 changes: 10 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,28 @@
"calm-queens-sniff",
"clean-brooms-invent",
"curly-beers-destroy",
"dull-boats-confess",
"famous-cars-battle",
"five-buckets-shave",
"forty-spiders-glow",
"fresh-flies-float",
"funny-swans-eat",
"good-beers-return",
"heavy-bikes-rhyme",
"itchy-mugs-jog",
"little-cycles-remember",
"long-bees-train",
"many-clocks-repair",
"many-pugs-hug",
"nervous-mice-sell",
"pretty-lemons-stare",
"rotten-ligers-yell",
"sharp-beers-retire",
"sharp-otters-vanish",
"small-pears-march",
"smart-pets-rush",
"swift-books-work",
"thirty-months-attack",
"tidy-peaches-return",
"wise-trains-study",
"yellow-bobcats-report",
Expand Down
24 changes: 24 additions & 0 deletions packages/markdownlayer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# markdownlayer

## 0.4.0-beta.4

### Minor Changes

- 3348332: No longer need to produce package.json in the generated folder
- ecbefbf: Infer types from config file by reference instead of generating them.
This improves the dev experience because changes in schema reflect instantly instead of waiting for a fresh build.
- 11a32b5: Revert to using a mix of JSON and MJS for generated files.
This was originally introduced in the engine rewrite in #109 (363bb665a68f0ee69bbebe5c28c1000c2a68d833) to avoid losing type information. However, that comes at a performance penalty that is not worth it.
- f6fb7fd: Added react export to replace the hooks export and included a default react component to reduce boilerplate code.
- 69d0193: Improve watcher for files.
Using one watcher is more efficient since we can merge the files/directories for which we expect changes. This allows watching on config-related files such as additional remark plugins.
Consequently, the config is only rebuilt when there are changes to it or its related files.
- afc25b5: No longer support passing of config via plugin.
This paves way for type inference from the config file.
- 9cefc89: Support passing of a custom config file and improve config processing as inspired by velite
- 7352ab1: Support for turbopack.
`withMarkdownlayer` must be the last plugin in the chain because the plugin returns a Promise, which is compatible with Next.js, but other plugins may not expect this behavior.
- 2f94329: Ignore files starting with a dot or underscore

### Patch Changes

- 32d8fdf: Replace shelljs with child_process

## 0.4.0-beta.3

### Patch Changes
Expand Down
18 changes: 13 additions & 5 deletions packages/markdownlayer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdownlayer",
"version": "0.4.0-beta.3",
"version": "0.4.0-beta.4",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
Expand All @@ -23,10 +23,18 @@
},
"typesVersions": {
"*": {
".": ["./dist"],
"core": ["./dist/core"],
"react": ["./dist/react"],
"remark": ["./dist/remark"]
".": [
"./dist"
],
"core": [
"./dist/core"
],
"react": [
"./dist/react"
],
"remark": [
"./dist/remark"
]
}
},
"files": [
Expand Down

0 comments on commit 24ce25f

Please sign in to comment.