@astrojs/markdown-remark 0.11.4 → 0.11.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +6 -0
- package/package.json +2 -3
- package/dist/ssr-utils.d.ts +0 -2
- package/dist/ssr-utils.js +0 -8
- package/src/ssr-utils.ts +0 -8
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
1
|
+
[34m@astrojs/markdown-remark:build: [0mcache hit, replaying output [2maaf29d0b3ca218ab[0m
|
|
2
|
+
[34m@astrojs/markdown-remark:build: [0m
|
|
3
|
+
[34m@astrojs/markdown-remark:build: [0m> @astrojs/markdown-remark@0.11.5 build /home/runner/work/astro/astro/packages/markdown/remark
|
|
4
|
+
[34m@astrojs/markdown-remark:build: [0m> astro-scripts build "src/**/*.ts" && tsc -p tsconfig.json
|
|
5
|
+
[34m@astrojs/markdown-remark:build: [0m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @astrojs/markdown-remark
|
|
2
2
|
|
|
3
|
+
## 0.11.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3669](https://github.com/withastro/astro/pull/3669) [`93e1020b1`](https://github.com/withastro/astro/commit/93e1020b1e8549b08cf5646e1ebc3ae34e14ebc8) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Tooling: reintroduce smoke test across example projects
|
|
8
|
+
|
|
3
9
|
## 0.11.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrojs/markdown-remark",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "withastro",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,8 +13,7 @@
|
|
|
13
13
|
"homepage": "https://astro.build",
|
|
14
14
|
"main": "./dist/index.js",
|
|
15
15
|
"exports": {
|
|
16
|
-
".": "./dist/index.js"
|
|
17
|
-
"./ssr-utils": "./dist/ssr-utils.js"
|
|
16
|
+
".": "./dist/index.js"
|
|
18
17
|
},
|
|
19
18
|
"dependencies": {
|
|
20
19
|
"@astrojs/micromark-extension-mdx-jsx": "^1.0.3",
|
package/dist/ssr-utils.d.ts
DELETED
package/dist/ssr-utils.js
DELETED
package/src/ssr-utils.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/** Utilities used in deployment-ready SSR bundles */
|
|
2
|
-
import Slugger from 'github-slugger';
|
|
3
|
-
|
|
4
|
-
const slugger = new Slugger();
|
|
5
|
-
/** @see {@link "/packages/astro/vite-plugin-markdown"} */
|
|
6
|
-
export function slug(value: string): string {
|
|
7
|
-
return slugger.slug(value);
|
|
8
|
-
}
|