@astrojs/markdown-remark 0.11.7 → 0.12.0
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 +11 -0
- package/package.json +3 -4
- package/src/remark-shiki.ts +1 -0
- 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
|
+
[35m@astrojs/markdown-remark:build: [0mcache hit, replaying output [2m1546942a008a83f6[0m
|
|
2
|
+
[35m@astrojs/markdown-remark:build: [0m
|
|
3
|
+
[35m@astrojs/markdown-remark:build: [0m> @astrojs/markdown-remark@0.12.0 build /home/runner/work/astro/astro/packages/markdown/remark
|
|
4
|
+
[35m@astrojs/markdown-remark:build: [0m> astro-scripts build "src/**/*.ts" && tsc -p tsconfig.json
|
|
5
|
+
[35m@astrojs/markdown-remark:build: [0m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @astrojs/markdown-remark
|
|
2
2
|
|
|
3
|
+
## 0.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3924](https://github.com/withastro/astro/pull/3924) [`07fb544da`](https://github.com/withastro/astro/commit/07fb544dab142a3d4bb9d0d878aab34eaea447b2) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Remove unused ssr-utils file
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`31f9c0bf0`](https://github.com/withastro/astro/commit/31f9c0bf029ffa4b470e620f2c32e1370643e81e)]:
|
|
12
|
+
- @astrojs/prism@0.6.1
|
|
13
|
+
|
|
3
14
|
## 0.11.7
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrojs/markdown-remark",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "withastro",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,12 +13,11 @@
|
|
|
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",
|
|
21
|
-
"@astrojs/prism": "^0.6.
|
|
20
|
+
"@astrojs/prism": "^0.6.1",
|
|
22
21
|
"acorn": "^8.7.1",
|
|
23
22
|
"acorn-jsx": "^5.3.2",
|
|
24
23
|
"assert": "^2.0.0",
|
package/src/remark-shiki.ts
CHANGED
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
|
-
}
|