taze
发表于|更新于
|浏览量:
在读书的时候,我们是与智者交谈;在生活的事务中,我们通常是与愚人交谈。——培根
分享一个开源项目:taze
github:https://github.com/antfu/taze
话说antfu大佬是真的nb

taze是一个现代化的ci工具,能够让你的依赖保持最新版
执行:npx taze

相关推荐
2024-11-07
typescript-exercises(十二)
人民是土壤,它含有要切事物发展所必需的生命汁液;而个人则是这土壤上的花朵与果实。——别林斯基 题目: 123declare module 'stats' { export function getMaxIndex(input: unknown, comparator: unknown): unknown;} 报错: 123456789101112131415index.ts(3,5): error TS2305: Module '"stats"' has no exported member 'getMaxElement'.index.ts(4,5): error TS2724: Module '"stats"' has no exported member 'getMinIndex'. Did you mean 'getMaxIndex'?index.ts(5,5): error TS23...
2025-11-07
apache-shenyu对接mcp-server-swagger-import
友谊是两颗心真诚相待,而不是一颗心对另一颗心的敲打。——鲁迅《鲁迅杂文选》 本次 PR(https://github.com/apache/shenyu-dashboard/pull/556)主要为 ShenYu Dashboard 的 MCP Server 管理模块引入了 Swagger 文件导入的前端支持。改动点如下: 主要涉及文件及改动说明 src/locales/en-US.json、src/locales/zh-CN.json 改动: 新增多条与 Swagger 导入相关的中英文国际化文案,如“Swagger Import”、“Swagger URL”、“项目名称”等。 目的: 确保新增页面和弹框的所有 UI 字段均能国际化显示。 src/models/mcpServer.js 改动: 引入并注册了 mcpSwaggerImport 的异步 effect。 新增了 swaggerImport generator 方法,通过 redux-saga 管理,与后端交互处理导入流程,反馈成功/失败提示,并在必要时回调刷新页面数据。 目的: 规范导入业...
2024-11-06
typescript-exercises(十一)
人只有在人们中间才能认识自己。——歌德 题目: 1234declare module 'str-utils' { // export const ... // export function ...} 报错: 123456index.ts(2,5): error TS2305: Module '"str-utils"' has no exported member 'strReverse'.index.ts(3,5): error TS2305: Module '"str-utils"' has no exported member 'strToLower'.index.ts(4,5): error TS2305: Module '"str-utils"' has no exported member 'strToUpper'.index.ts(...
2022-12-15
低仿lusaxweb鼠标
幸福的婚姻生活,往往会被卑鄙的勾当、阴险的猜忌所破坏。——莎士比亚 这是 http://lusaxweb.net/ 它的鼠标很有意思,是一个圈,能够反色,我们低仿一个 代码如下: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263<!DOCTYPE html><html><head> <style> * { margin: 0; padding: 0; cursor: none; } .img { height: 80vh; width: 80vw; overflow: hidden; } .img:ho...
2022-12-19
css attr
过于大方的施舍会导致盗窃——西塞罗 分享一个css函数attr MDN:https://developer.mozilla.org/zh-CN/docs/Web/CSS/attr attr可以获取我们标签内的属性作为值 例如: 1<p data-foo="hello">world</p> css: 123[data-foo]::before { content: attr(data-foo) " ";} 效果: [data-foo]::before { content: attr(data-foo) " "; } world 除了data-*的自定义属性,也可以获取其他的,例如custom-prefix 123456<style>[custom-prefix]::before { content: attr(custom-prefix);}</style><p custom-prefix="hello"&g...
2021-11-27
event
有信仰的人不会孤独。——阿列克谢耶维奇 vue官方文档有介绍$event 我们在开发中经常这么写来获取事件 1<div class="trigger-me" @click="triggerMe">点我触发</div> 方法: 123456methods: { triggerMe(e, name) { console.log('e: ', e); console.log('name: ', name); }} 然后调用一下 可以看到打印出了事件,如果我们需要传入其他参数,就可以使用$event了 1<div class="trigger-me" @click="triggerMe($event, 'ruben')">点我触发</div> 再次触发:

阿超
我的名字叫阿超 年龄25岁 家在北京市 职业是软件开发 每天最晚也会在八点前回家 不抽烟 酒浅尝辄止 晚上十二点上床 保证睡足八个小时 睡前写一篇博客 再做二十分钟俯卧撑暖身 然后再睡觉 基本能熟睡到天亮 像婴儿一样不留下任何疲劳和压力 就这样迎来第二天的早晨 健康检查结果也显示我很正常 我想说明我是一个不论何时都追求内心平稳的人 不拘泥于胜负 不纠结于烦恼 不树立使我夜不能寐的敌人 这就是我在这社会的生活态度
Follow Me公告
This is my Blog