chore: update dependencies

This commit is contained in:
grandeljay 2023-08-17 11:47:40 +02:00
parent 0f47bca189
commit 6d20c0b45a
3066 changed files with 359185 additions and 427821 deletions

View file

@ -1,19 +1,18 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
/**
* Kicks off less and compiles any stylesheets
* used in the browser distributed version of less
* to kick-start less using the browser api
*/
/* global window, document */
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var default_options_1 = tslib_1.__importDefault(require("../less/default-options"));
var add_default_options_1 = tslib_1.__importDefault(require("./add-default-options"));
var index_1 = tslib_1.__importDefault(require("./index"));
var options = default_options_1.default();
if (window.less) {
for (var key in window.less) {
if (window.less.hasOwnProperty(key)) {
if (Object.prototype.hasOwnProperty.call(window.less, key)) {
options[key] = window.less[key];
}
}