html-res-webpack-plugin icon indicating copy to clipboard operation
html-res-webpack-plugin copied to clipboard

plugin for generating html in webpack

Results 16 html-res-webpack-plugin issues
Sort by recently updated
recently updated
newest added

Bumps [async](https://github.com/caolan/async) from 2.6.1 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) v2.6.3 Updated lodash to squelch a security warning (#1675) v2.6.2 Updated lodash...

dependencies

Bumps [chownr](https://github.com/isaacs/chownr) from 1.0.1 to 1.1.4. Commits 814f642 1.1.4 a0d7ae0 push to github before npm 1a3667a ignore stuff 147eac4 Full tests, handle errors properly in many cases 578fb9f update tap,...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.10 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...

dependencies

Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....

dependencies

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.4.0 to 6.5.4. Commits 43ac7f2 6.5.4 f4bc72b package: bump deps 441b742 ec: validate that a point before deriving keys e71b2d9 lib: relint using eslint 8421a01 build(deps): bump...

dependencies

我使用python的flask开发,使用的jinja2模板,需要把js插入到html指定的位置。能否这样实现呢: ```html Inject point // chunk1插入的位置 // chunk2插入的位置 ```

Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.1 to 5.7.4. Commits 6370e90 Mark version 5.7.4 fbc15b1 More rigorously check surrogate pairs in regexp validator 910e62b Mark version 5.7.3 3442a80 Make generate-identifier-regex capable of rewriting...

dependencies

发现html-res-webpack-plugin的一个问题,如果我给webpack的output的chunkFilename增加querystring参数 ![image](https://user-images.githubusercontent.com/3152812/58609280-a8062580-82d9-11e9-8949-7e643e61f311.png) path.extname返回的是.js?_tid=1 ![image](https://user-images.githubusercontent.com/3152812/58609323-c835e480-82d9-11e9-9ab7-d448817037db.png) 然后stats.assets对象的内容是 ![image](https://user-images.githubusercontent.com/3152812/58609365-e26fc280-82d9-11e9-97bd-e5a7a63d2b45.png) 但md5HtmlRes方法里面做了removeQueryHash处理,导致newRoute匹配不上assets对象里的内容 ![image](https://user-images.githubusercontent.com/3152812/58609411-0cc18000-82da-11e9-9e72-3f1dc6014455.png) 最终导致vendor.js没有在html里面被引入进来

HtmlWebpackPlugin产出的文件生成的是index.html index.html中引入的是main.[hash].js main.[hash].css 但是我的项目 想生成的是js文件 如sdk-load.js main.[hash].js main.[hash].css sdk-load.js是我自定义的脚本 脚本内部想包含main.[hash].js main.[hash].css的文件名 请问能否支持产出js文件?