首页 文章 精选 留言 我的

精选列表

搜索[云开发静态网站托管],共10015篇文章
优秀的个人博客,低调大师

VuePress 1.9.0 发布,Vue 轻量级静态网站生成器

VuePress 1.9.0 发布了,此版本为配置文件引入了完整的 TypeScript 支持,还引入了拥有类型推断功能的官方插件,完整更新内容如下: 支持 .vuepress/config.ts 之前,VuePress 只支持这些类型的配置文件 .vuepress/config.js .vuepress/config.yml .vuepress/config.toml 从现在开始,.vuepress/config.ts 获得官方支持。 defineConfig 智能感知配置助手 一个在 vuepress/config 中显示的辅助函数,它可以辅助类型提示符: import { defineConfig } from "vuepress/config"; export default defineConfig({ title: "VuePress", description: "Vue-powered Static Site Generator" // ... }); Theme 基于主题的类型推断 默认情况下,defineConfig 助手利用默认主题配置的类型作为 themeConfig,也就是说,所有默认主题配置的类型提示现在都可用。 import { defineConfig } from "vuepress/config"; export default defineConfig({ themeConfig: { repo: "vuejs/vuepress", editLinks: true, docsDir: "packages/docs/docs" // Type is `DefaultThemeConfig` } }); 如果你使用一个自定义主题,则可以使用 defineConfig4CustomTheme 助手来传递你的主题的泛型类型: import { defineConfig4CustomTheme } from "vuepress/config"; interface MyThemeConfig { hello: string; } export default defineConfig4CustomTheme<MyThemeConfig>({ themeConfig: { // Type is `MyThemeConfig` hello: "vuepress" } }); Official Plugins 官方插件类型推断 从 1.9 开始,用户将可以享受官方插件的类型提示: 元组样式(Tuple Style)、对象样式(Object Style)和插件简写(Plugin Shorthand )都支持类型推断。 元组样式: import { defineConfig } from "vuepress/config"; export default defineConfig({ plugins: [ [ "@vuepress/pwa", { serviceWorker: true } ] ] }); 对象样式: import { defineConfig } from "vuepress/config"; export default defineConfig({ plugins: { "@vuepress/pwa": { serviceWorker: true } } }); ISO 语言代码 类型推断支持ISO 语言代码 上下文 API VuePress 的配置也可以是一个函数,而它的第一个参数是当前的应用上下文: import { defineConfig } from "vuepress/config"; export default defineConfig(ctx => ({ // do not execute babel compilation under development evergreen: ctx.isProd })); 以上为 Vuepress 1.9 的更新内容,更新公告:https://github.com/vuejs/vuepress/releases/tag/v1.9.0

优秀的个人博客,低调大师

VuePress 1.4.0 发布,Vue 轻量级静态网站生成器

VuePress 1.4.0版本已发布,更新如下: Bug修复: fail to test specific package (#2099) (0aadf05) opencollective postinstall failure not being ignored on Windows(#2177) (a9759c0) $plugin-pwa:work with register-service-worker 1.7.0 (close#2222) (#2229) (604052b) $shared-utils:Slugify em/en dash in urls (#2174) (8d9968d) $theme-default:remove error logs for nested sidebar groups (#2191) (c3a943c) 新特性: $core:改进了VuePress的构建时间。 (#2163) (76da780) $plugin-last-updated:新增了dateOptions选项。(#2192) (369c315) $plugin-search:改进了原生的搜索算法。(#1557) (e9fde5c) 更新说明:https://github.com/vuejs/vuepress/releases

优秀的个人博客,低调大师

VuePress 1.3.0 发布,Vue 轻量级静态网站生成器

VuePress的1.3.0版本发布了,主要更新内容如下: Bug修正: update known command list (#2146) (2b25740) $cli: inferUserDocsDirectory ignore all node_modules (#2137) (df59909) $core: set NODE_ENV before creating app (#1972) (245be8d) $core: temp option in siteConfig has not effect (fix #2038) (#2040) (0bb85a4) $default-theme: deep sidebar links rendenring (#1973) (0e5519a) $docs: Fixed typo (#1997) (7d6e420) $docs: Uniforming VuePress labels in documentation (fix #1998) (6a84126) $markdown: Fix four spaces codeblocks rendering (Closes #1921) (#1958) (7bc5825) $plugin-google-analytics: duplicate tracking of first page (fix #2017) (#2039) (a69df21) $plugin-pwa: no global-ui-component when updatePopup is disabled (#2041) (6f9e478) $shared-utils: Add curly quotes to rSpecial (#1934) (28a0ed9) $theme-default: close dropdown-links when focusout on the last item (close #1948) (#1952) (cd72acc) $theme-default: slots don't allow customization for Sidebar & Page (close: #1950) (#1951) (890e85d) $theme-default: use alias for nested SidebarLinks (close #2049) (ceccca3) $theme-default: wrong algolia search route with base config (#2007) (b00b277) 新特性: $cli: Notify users of a newer release (#2121) (7a09a72) $cli: run debug mode without clearing screen (close #2100) (#2116) (c6a3cb5) $core: Add generator meta tag to ssr index.html template (#2133) (2826cd7) add variable to config HomePage width (close #2055) (#2086) (b72d145) remove unnecessary check in moduleResolver.ts (#2068) (bd71e43) $config: Allow overriding badges colors (close #1940) (#1941) (89a4a8d) $markdown: extractHeaders option (close: #1903) (#1945) (d2fef5d) $markdown: Support for Rust file extension (73089a0) $theme-default: allow optional subtitle (#1981) (a28804c) $theme-default: external links in prev/next (close #1962)(#1984) (9f28814) $theme-default: markdown details custom block (close #768) (#2044) (7f2a997) $theme-default: Support configuring target and rel for nav links (close #1353) (#1734) ([770ba72]

优秀的个人博客,低调大师

Hugo 0.60.0 发布,Go 编写的静态网站生成器

Hugo 0.60.0 发布了,新版本最大改进是:Goldmark 现在是供 Hugo 使用 Markdown 的默认库。 以下是一些主要更新内容: 永久链接配置现在支持 Go 日期格式的字符串#6489 已删除了将 Pygments 用作荧光笔的选项#4491 Markdown 中代码围栏的代码高亮显示的配置选项现在默认为启用 Goldmark 和 Blackfriday 的功能集有所不同。有关详细信息,请参见文档 高亮短代码/模板功能和代码围栏属性现在共享有关行号和高亮范围的相同 API hugo 命令的 Total in ... 现在包括配置和模块加载 3 个 SEO 内部模板 twitter_cards.html,opengraph.html 和 schema.html 中的图像逻辑被合并:首先对页面参数进行图像处理,然后对与 *feature*,*cover* 或 *thumbnail* 匹配的图像进行捆绑,然后对图像站点参数进行捆绑 弃用 mmark33d733306486 其余大量改进和修复内容见更新说明: https://github.com/gohugoio/hugo/releases/tag/v0.60.0

优秀的个人博客,低调大师

VuePress 1.2.0 发布,Vue 轻量级静态网站生成器

VuePress 1.2.0 已经发布,更新内容: Bug修复: $core:optimize error log (close:#1296) (#1413) (51de6cf) $markdown:notify error when not found snippet (close:#1872) (#1910) (6aaa7d7) $theme-default:regression of arrow spacing consistent (close:#1427) (#1907) (dbda574) $theme-default:make dropdown-title's UI consistent with nav-link (#1890) (757e880) $theme-default:make navbar dropdown links accessible (#1837) (a8ce645) $theme-default:regression of custom container default title (#1875) (e0ef407) 新特性: $core:config "pattern" of resolved files (close:#1700)(#1705) (1f3e4e2) $core:support async function exported in vuepress config (close:#1185) (#1925) (cdbfd75) $core:Upgrade vue version to2.6.10(#1876) (c17c70e) $theme-default:smooth scroll (close#567) (#1881) (2e3efb4) $theme-default:: enable editLink on specific page via frontmatter (close:#1762) (#1825) (0e8a442) $markdown:Highlightkotlincode on snippets import (close:#1831)(#1874) (f913fea) $shared-utils:resolve regularPath when getting permalink (#1786) (c6ce6cf)

优秀的个人博客,低调大师

VuePress 1.1.0 发布,Vue 轻量级静态网站生成器

VuePress 1.1.0 已经发布,更新内容: Bug修复: $js-yaml:fix Security issue by bump js yaml version#1845(#1846) (696717b) $doc-deploymentfix Addnpm ciinstructions for Travis CI (0434f15), closes#1844 $theme-defaultSearch box max suggestions (#1728) (ade328f) $docs:Update link to the 0.x documentation (#1852) (c7999cf) $last-updated:use file author time instead of submodule commit time (#1640) (f964391) $theme-default:add text ellipsis to navbar (#1683) (#1840) (74017c5) $theme-default:Expand nested sidebar groups (#1540) (eb231bf) 功能更新: $configImprove CI process (#1759) (fe7301b) $theme-defaultrenable algolia docSearch#697(68861f0) $config:make extendPageData async ready without breaking changes (#1546) (543fd6c) $core:better error log for layouts (#1455) (3b68913) $plugin-search:Add support for search hotkeys (#1848) (1ba06ae) 更新说明:https://github.com/vuejs/vuepress/releases

资源下载

更多资源
腾讯云软件源

腾讯云软件源

为解决软件依赖安装时官方源访问速度慢的问题,腾讯云为一些软件搭建了缓存服务。您可以通过使用腾讯云软件源站来提升依赖包的安装速度。为了方便用户自由搭建服务架构,目前腾讯云软件源站支持公网访问和内网访问。

Spring

Spring

Spring框架(Spring Framework)是由Rod Johnson于2002年提出的开源Java企业级应用框架,旨在通过使用JavaBean替代传统EJB实现方式降低企业级编程开发的复杂性。该框架基于简单性、可测试性和松耦合性设计理念,提供核心容器、应用上下文、数据访问集成等模块,支持整合Hibernate、Struts等第三方框架,其适用范围不仅限于服务器端开发,绝大多数Java应用均可从中受益。

Sublime Text

Sublime Text

Sublime Text具有漂亮的用户界面和强大的功能,例如代码缩略图,Python的插件,代码段等。还可自定义键绑定,菜单和工具栏。Sublime Text 的主要功能包括:拼写检查,书签,完整的 Python API , Goto 功能,即时项目切换,多选择,多窗口等等。Sublime Text 是一个跨平台的编辑器,同时支持Windows、Linux、Mac OS X等操作系统。

WebStorm

WebStorm

WebStorm 是jetbrains公司旗下一款JavaScript 开发工具。目前已经被广大中国JS开发者誉为“Web前端开发神器”、“最强大的HTML5编辑器”、“最智能的JavaScript IDE”等。与IntelliJ IDEA同源,继承了IntelliJ IDEA强大的JS部分的功能。

用户登录
用户注册