twinh

Results 7 comments of twinh

Hello, for PHP, You may try this: https://github.com/twinh/php-coveralls#github-actions Add a new step after phpunit generate coverage report. ```yaml - name: Upload coverage results to Coveralls env: COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}...

Thanks for your works, this is my script to remove the **same** devServers configs. ```js const glob = require('glob'); const util = require('util'); const configs = glob.sync('./plugins/*/webpack.config*.js').map(file => require(file)); if...

中文输入是ace编辑器的问题,升级到1.2.6即可解决

Update ace editor to 1.2.6 can fix this problem

The way to generate token http://stackoverflow.com/a/13703882

2. 尝试了配置了编译里的 h5.enableExtract 为 `true` 后,能覆盖掉内置样式 3. 先自行维护了一个兼容样式文件

你好,`wei()->db->close()` 只是将 PDO 关闭。db 对象,还有前面的查询语句都还记录着( `wei()->db->getQueries()` 可以获取)是否有可能这个导致内存继续增加。 还有,dmap-x 哪里可以找到的呢? ```php /** * Close the database connection */ public function close() { $this->pdo = null; $this->isConnected = false; } ``` 看能否这样操作...