Skip to content

Commit 0099293

Browse files
author
baitu.huang
committed
1.1.0: update dependencies
1 parent f9a58ae commit 0099293

8 files changed

+1162
-1056
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
## vue-flags-webpack-plugin changelog
2+
### v1.1.0
3+
+ update dependencies
4+
+ drop support for node < 8.9.0
5+
6+
27
### v1.0.0 🎉
38
+ add `watch` option to support modify flags in development
49
+ `flags` could also be a file path

lib/plugin.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,11 @@ module.exports = class VueFlagsWebpackPlugin {
3333
*/
3434
this.options = validateOptions(options)
3535
}
36+
3637
findVueLoader (rules) {
3738
// depend on implementation of `vue-loader`
3839
// see https://github.com/vuejs/vue-loader/blob/master/lib/plugin.js
39-
for (let rule of rules) {
40+
for (const rule of rules) {
4041
if (!Array.isArray(rule.use)) continue
4142
const index = rule.use.findIndex(({ loader, ident, options }) => {
4243
return VUE_LOADER_REG.test(loader) && ident === VUE_LOADER_IDENT && options
@@ -46,6 +47,7 @@ module.exports = class VueFlagsWebpackPlugin {
4647
}
4748
}
4849
}
50+
4951
useVue (plugins) {
5052
let vueLoader
5153
let VueLoaderPlugin
@@ -69,6 +71,7 @@ module.exports = class VueFlagsWebpackPlugin {
6971
}
7072
return useVue
7173
}
74+
7275
patchRules (webpackConfig) {
7376
const { module: { rules }, plugins } = webpackConfig
7477
if (this.useVue(plugins)) {
@@ -114,6 +117,7 @@ module.exports = class VueFlagsWebpackPlugin {
114117
})
115118
}
116119
}
120+
117121
apply (compiler) {
118122
if (!compiler.hooks) {
119123
throw genError('webpack < 4 is not supported')

lib/resolve-options.js

+13-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const fs = require('fs-extra')
22
const path = require('path')
33
const Watchpack = require('watchpack')
44
const clearModule = require('clear-module')
5-
const validateOptions = require('schema-utils')
5+
const _validateOptions = require('schema-utils')
66

77
const { RESOLVED_FLAGS_PATH, PLUGIN_NAME } = require('./constants')
88
const { genError, toFunc, getDependencies } = require('./utils')
@@ -17,7 +17,7 @@ const flagsSchema = {
1717
}
1818
}
1919

20-
const optionSchema = watch => {
20+
const optionsSchema = watch => {
2121
return {
2222
type: 'object',
2323
additionalProperties: false,
@@ -60,6 +60,13 @@ const optionSchema = watch => {
6060
}
6161
}
6262

63+
function validateOptions (options, schema) {
64+
return _validateOptions(schema, options, {
65+
name: PLUGIN_NAME,
66+
baseDataPath: 'options'
67+
})
68+
}
69+
6370
function codegen () {
6471
/* eslint-disable */
6572
"use strict";
@@ -103,7 +110,7 @@ function updateGetFlags (flagsPaths, errors = 0) {
103110
if (errors > 10) { throw err } // 😔
104111
return updateGetFlags(flagsPaths, errors + 1)
105112
}
106-
validateOptions(flagsSchema, newFlags, PLUGIN_NAME)
113+
validateOptions(newFlags, flagsSchema)
107114
fs.outputFileSync(RESOLVED_FLAGS_PATH, codegen.toCode(newFlags))
108115
return newFlags
109116
}
@@ -165,7 +172,7 @@ function setOptions ({ flags, ignoreFiles, namespace, watch }, context, watchOpt
165172
} else {
166173
if (typeof flags === 'string') {
167174
flags = require(flags)
168-
validateOptions(flagsSchema, flags, PLUGIN_NAME)
175+
validateOptions(flags, flagsSchema)
169176
}
170177
pluginOptions.flags = flags
171178
}
@@ -212,8 +219,8 @@ function setOptions ({ flags, ignoreFiles, namespace, watch }, context, watchOpt
212219
module.exports = {
213220
setOptions,
214221
validateOptions (options) {
215-
const schema = optionSchema(options && options.watch)
216-
validateOptions(schema, options, PLUGIN_NAME)
222+
const schema = optionsSchema(options && options.watch)
223+
validateOptions(options, schema)
217224
return options
218225
}
219226
}

lib/transform-node.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function processElement (node, options, flags) {
160160
}
161161
if (node.scopedSlots) {
162162
const slotNames = Object.keys(node.scopedSlots)
163-
for (let name of slotNames) {
163+
for (const name of slotNames) {
164164
const scopedSlotNode = node.scopedSlots[name]
165165
if (scopedSlotNode[flagMeta]) {
166166
const keep = evaluateFlagDir(scopedSlotNode, options, flags)

lib/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ exports.getDependencies = function getDependencies (callback, deps) {
5151
let size
5252
do { // against node cache
5353
size = deps.size
54-
for (let dep of deps) {
54+
for (const dep of deps) {
5555
clearModule(dep)
5656
}
5757
callback()

0 commit comments

Comments
 (0)