vue-loader
Advanced tools
Comparing version 15.9.2 to 15.9.3
@@ -0,1 +1,11 @@ | ||
<a name="15.9.3"></a> | ||
## [15.9.3](https://github.com/vuejs/vue-loader/compare/v15.9.2...v15.9.3) (2020-06-23) | ||
### Bug Fixes | ||
* skip matching rule with 'enforce' ([e7b2b11](https://github.com/vuejs/vue-loader/commit/e7b2b11)), closes [#1680](https://github.com/vuejs/vue-loader/issues/1680) | ||
<a name="15.9.2"></a> | ||
@@ -10,3 +20,3 @@ ## [15.9.2](https://github.com/vuejs/vue-loader/compare/v15.9.1...v15.9.2) (2020-05-01) | ||
### Features | ||
### Documentation | ||
@@ -13,0 +23,0 @@ * add DocSearch as recommended by vuepress ([#1662](https://github.com/vuejs/vue-loader/issues/1662)) ([032d56b](https://github.com/vuejs/vue-loader/commit/032d56b)) |
@@ -41,2 +41,6 @@ const qs = require('querystring') | ||
for (const rawRule of rules) { | ||
// skip rules with 'enforce'. eg. rule for eslint-loader | ||
if (rawRule.enforce) { | ||
continue | ||
} | ||
// skip the `include` check when locating the vue rule | ||
@@ -43,0 +47,0 @@ const clonedRawRule = Object.assign({}, rawRule) |
{ | ||
"name": "vue-loader", | ||
"version": "15.9.2", | ||
"version": "15.9.3", | ||
"description": "Vue single-file component loader for Webpack", | ||
@@ -91,3 +91,3 @@ "main": "lib/index.js", | ||
"ts-loader": "^4.2.0", | ||
"typescript": "^2.8.3", | ||
"typescript": "^3.9.5", | ||
"url-loader": "^1.0.1", | ||
@@ -94,0 +94,0 @@ "vue": "^2.5.16", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69384
1101