aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@webpack-contrib/schema-utils/dist
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/@webpack-contrib/schema-utils/dist')
-rw-r--r--node_modules/@webpack-contrib/schema-utils/dist/ValidationError.js110
-rw-r--r--node_modules/@webpack-contrib/schema-utils/dist/cjs.js3
-rw-r--r--node_modules/@webpack-contrib/schema-utils/dist/index.js13
-rw-r--r--node_modules/@webpack-contrib/schema-utils/dist/validate-options.js121
4 files changed, 247 insertions, 0 deletions
diff --git a/node_modules/@webpack-contrib/schema-utils/dist/ValidationError.js b/node_modules/@webpack-contrib/schema-utils/dist/ValidationError.js
new file mode 100644
index 00000000..238317bb
--- /dev/null
+++ b/node_modules/@webpack-contrib/schema-utils/dist/ValidationError.js
@@ -0,0 +1,110 @@
+'use strict';
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
+
+var _chalk = require('chalk');
+
+var _chalk2 = _interopRequireDefault(_chalk);
+
+var _stripAnsi = require('strip-ansi');
+
+var _stripAnsi2 = _interopRequireDefault(_stripAnsi);
+
+var _textTable = require('text-table');
+
+var _textTable2 = _interopRequireDefault(_textTable);
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
+
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
+
+var ValidationError = function (_Error) {
+ _inherits(ValidationError, _Error);
+
+ function ValidationError(options) {
+ _classCallCheck(this, ValidationError);
+
+ // Workaround for https://github.com/istanbuljs/istanbuljs/issues/139
+ var _this = _possibleConstructorReturn(this, (ValidationError.__proto__ || Object.getPrototypeOf(ValidationError)).call(this));
+
+ _this.constructor = ValidationError;
+ _this.__proto__ = ValidationError.prototype;
+ // End Workaround
+ // prettier-ignore
+ _this.message = _chalk2.default`${options.name}`;
+ _this.meta = options;
+ _this.meta.desc = _chalk2.default`{underline Options Validation Error}`;
+ _this.name = 'ValidationError';
+
+ if (options.log) {
+ _this.message += `: ${_this.meta.desc}`;
+ } else {
+ _this.message += `\n\n ${_this.meta.desc}\n\n${_this.format()}\n`;
+ }
+
+ Error.captureStackTrace(_this, _this.constructor);
+ return _this;
+ }
+
+ _createClass(ValidationError, [{
+ key: 'format',
+ value: function format() {
+ var errors = this.meta.errors;
+
+ var rows = [];
+ var options = {
+ align: ['', 'l', 'l'],
+ stringLength(str) {
+ return (0, _stripAnsi2.default)(str).length;
+ }
+ };
+
+ var _iteratorNormalCompletion = true;
+ var _didIteratorError = false;
+ var _iteratorError = undefined;
+
+ try {
+ for (var _iterator = errors[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
+ var err = _step.value;
+
+ rows.push(['', _chalk2.default`{dim options}${err.dataPath}`, _chalk2.default`{blue ${err.message}}`]);
+ }
+ } catch (err) {
+ _didIteratorError = true;
+ _iteratorError = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion && _iterator.return) {
+ _iterator.return();
+ }
+ } finally {
+ if (_didIteratorError) {
+ throw _iteratorError;
+ }
+ }
+ }
+
+ return (0, _textTable2.default)(rows, options);
+ }
+
+ // eslint-disable-next-line class-methods-use-this
+
+ }, {
+ key: 'toString',
+ value: function toString() {
+ return `${this.message}\n\n${this.format()}`;
+ }
+ }]);
+
+ return ValidationError;
+}(Error);
+
+exports.default = ValidationError; \ No newline at end of file
diff --git a/node_modules/@webpack-contrib/schema-utils/dist/cjs.js b/node_modules/@webpack-contrib/schema-utils/dist/cjs.js
new file mode 100644
index 00000000..61cc3574
--- /dev/null
+++ b/node_modules/@webpack-contrib/schema-utils/dist/cjs.js
@@ -0,0 +1,3 @@
+'use strict';
+
+module.exports = require('./index').default; \ No newline at end of file
diff --git a/node_modules/@webpack-contrib/schema-utils/dist/index.js b/node_modules/@webpack-contrib/schema-utils/dist/index.js
new file mode 100644
index 00000000..79e5482d
--- /dev/null
+++ b/node_modules/@webpack-contrib/schema-utils/dist/index.js
@@ -0,0 +1,13 @@
+'use strict';
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+
+var _validateOptions = require('./validate-options');
+
+var _validateOptions2 = _interopRequireDefault(_validateOptions);
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
+
+exports.default = _validateOptions2.default; \ No newline at end of file
diff --git a/node_modules/@webpack-contrib/schema-utils/dist/validate-options.js b/node_modules/@webpack-contrib/schema-utils/dist/validate-options.js
new file mode 100644
index 00000000..81331987
--- /dev/null
+++ b/node_modules/@webpack-contrib/schema-utils/dist/validate-options.js
@@ -0,0 +1,121 @@
+'use strict';
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+
+var _path = require('path');
+
+var _path2 = _interopRequireDefault(_path);
+
+var _fs = require('fs');
+
+var _fs2 = _interopRequireDefault(_fs);
+
+var _ajv = require('ajv');
+
+var _ajv2 = _interopRequireDefault(_ajv);
+
+var _ajvKeywords = require('ajv-keywords');
+
+var _ajvKeywords2 = _interopRequireDefault(_ajvKeywords);
+
+var _webpackLog = require('webpack-log');
+
+var _webpackLog2 = _interopRequireDefault(_webpackLog);
+
+var _options = require('../schema/options.json');
+
+var _options2 = _interopRequireDefault(_options);
+
+var _ValidationError = require('./ValidationError');
+
+var _ValidationError2 = _interopRequireDefault(_ValidationError);
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
+
+var ajv = new _ajv2.default({
+ allErrors: true,
+ useDefaults: true,
+ errorDataPath: 'property'
+});
+var defaults = {
+ exit: false,
+ log: false,
+ name: '',
+ schema: '',
+ target: {},
+ throw: true
+};
+var logName = 'schema-utils';
+
+(0, _ajvKeywords2.default)(ajv, ['instanceof', 'typeof']);
+
+var validate = function validate(options) {
+ var schema = void 0;
+
+ if (typeof options.schema === 'string') {
+ schema = _fs2.default.readFileSync(_path2.default.resolve(options.schema), 'utf8');
+ schema = JSON.parse(schema);
+ } else {
+ schema = Object.assign({}, options.schema);
+ }
+
+ if (!ajv.validate(schema, options.target)) {
+ var errors = ajv.errors;
+
+
+ errors = errors.sort(function (a, b) {
+ var aPath = a.dataPath;
+ var bPath = b.dataPath;
+
+ if (aPath.startsWith('[')) {
+ if (!bPath.startsWith('[')) {
+ return -1;
+ }
+
+ return aPath < bPath ? -1 : 1;
+ }
+
+ if (aPath.startsWith('.') && bPath.startsWith('.')) {
+ return aPath < bPath ? -1 : 1;
+ }
+
+ return 0;
+ });
+
+ var err = new _ValidationError2.default(Object.assign(options, { errors }));
+
+ if (options.throw) {
+ throw err;
+ }
+
+ if (options.log) {
+ var log = (0, _webpackLog2.default)({
+ name: options.name || logName,
+ id: `${logName}-validator`
+ });
+ log.error(`${err.meta.desc}\n\n${err.format()}\n`);
+ }
+
+ if (options.exit) {
+ process.exit(1);
+ }
+ }
+
+ return true;
+};
+
+var validator = function validator(opts) {
+ validate({
+ throw: true,
+ schema: _options2.default,
+ target: opts
+ });
+
+ var options = Object.assign({}, defaults, opts);
+
+ return validate(options);
+};
+
+exports.default = validator; \ No newline at end of file