Skip to content

Commit

Permalink
chore(Dependencies): Update Vitepress to 1.0.0-rc.10
Browse files Browse the repository at this point in the history
  • Loading branch information
sfxcode committed Aug 28, 2023
1 parent a6e079a commit f089ced
Show file tree
Hide file tree
Showing 6 changed files with 827 additions and 1,098 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions docs/.vitepress/theme/composables/authors.data.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import path = require('path')
import fs = require('fs')
import fs from 'node:fs'
import path from 'node:path'
import type { MarkdownRenderer } from 'vitepress'
import { createMarkdownRenderer } from 'vitepress'
import useBlogFile from './useBlogFile'
Expand Down
4 changes: 2 additions & 2 deletions docs/.vitepress/theme/composables/posts.data.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import path = require('path')
import fs = require('fs')
import fs from 'node:fs'
import path from 'node:path'
import type { MarkdownRenderer } from 'vitepress'
import { createMarkdownRenderer } from 'vitepress'
import { formatDistance } from 'date-fns'
Expand Down
8 changes: 4 additions & 4 deletions docs/.vitepress/theme/composables/useBlogFile.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path = require('path')
import fs = require('fs')
import { fileURLToPath } from 'url'
import matter = require('gray-matter')
import fs from 'node:fs'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import matter from 'gray-matter'

export default () => {
function readFrontMatter(file: string, parentDir: string, cache: Map<any, any>) {
Expand Down
31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sfxcode/vitepress-blog-starter",
"version": "0.8.0",
"version": "0.8.1",
"description": "Vitepress Starter, UnoCSS, Anu, Blog",
"license": "MIT",
"main": "index.js",
Expand All @@ -16,29 +16,30 @@
"UnoCSS",
"Anu"
],
"type": "module",
"author": "Tom Lamers",
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@antfu/eslint-config": "^0.41.0",
"@anu-vue/preset-theme-default": "^0.15.2",
"@iconify-json/bx": "^1.1.6",
"@iconify-json/fluent-emoji": "^1.1.13",
"@iconify-json/heroicons-outline": "^1.1.6",
"@iconify-json/logos": "^1.1.33",
"@types/node": "^20.4.5",
"@unocss/preset-icons": "^0.53.6",
"@unocss/preset-uno": "0.53.6",
"@vueuse/core": "^10.2.1",
"@iconify-json/bx": "^1.1.7",
"@iconify-json/fluent-emoji": "^1.1.14",
"@iconify-json/heroicons-outline": "^1.1.7",
"@iconify-json/logos": "^1.1.34",
"@types/node": "^20.5.7",
"@unocss/preset-icons": "^0.55.3",
"@unocss/preset-uno": "0.55.3",
"@vueuse/core": "^10.4.1",
"anu-vue": "^0.15.2",
"conventional-changelog-cli": "^3.0.0",
"conventional-changelog-cli": "^4.0.0",
"date-fns": "^2.30.0",
"eslint": "^8.45.0",
"eslint": "^8.48.0",
"flexsearch": "^0.7.31",
"fs-extra": "^11.1.1",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"typescript": "^5.1.6",
"unocss": "^0.53.6",
"vitepress": "1.0.0-beta.6",
"typescript": "^5.2.2",
"unocss": "^0.55.3",
"vitepress": "1.0.0-rc.10",
"vue": "^3.3.4"
}
}
Loading

0 comments on commit f089ced

Please sign in to comment.