lin

Results 11 comments of lin

@yoyo837 国内还是有好多不用梯子,只用百度拒绝英文的人的,见过很多。

> hey all, > > currently i am not sure if there is a way to support custom tag pattern , > for eg > the following semvar tags are...

Hi, I found a solution and you can have a try. You can custom the function `generateOn ` like this: ```javascript conventionalChangelog( { preset: "angular", append: false, releaseCount: 0, currentTag:...

那普通项目是哪一个更好使? 我倾向 reset.css。

css position ``` .container { position: relative; } .container .item { width: 100px; height: 50px; position: absolute; top: 0; left: 0; bottom: 0; right: 0; margin: auto; } ```

> > css position > > ``` > > .container { > > position: relative; > > } > > .container .item { > > width: 100px; > > height:...

> 我的意见和楼上相反,应该先大概看一遍文档…… 文档中会描述本地环境的配置方法 > > ``` > 查看是否有 CI/CD,如果有跟着 CI/CD 部署的脚本跑命令 > 查看是否有 dockerfile,如果有跟着 dockerfile 跑命令 > 查看 npm scripts 中是否有 dev/start,尝试 npm run dev/npm start > ``` > >...

For personal testing, you need to upgrade `react-dnd` and `react-dnd-html5-backend` to the latest version, and note that they need to be placed in **peerDenepdencies**. It did solve the problem.

```javascript function timeoutPromise(promise, timeout) { return new Promise((resolve, reject) => { const timer = setTimeout(() => { reject(new Error(`Promise timed out after ${timeout} ms`)); }, timeout); promise .then((result) => {...

> 对浏览器兼容性有要求吗 现在主流浏览器都支持了,可以 MDN 或者 Can I use 里面自己查一下