You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
191 lines
6.1 KiB
191 lines
6.1 KiB
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.getLessOptions = getLessOptions;
|
|
exports.isUnsupportedUrl = isUnsupportedUrl;
|
|
exports.normalizeSourceMap = normalizeSourceMap;
|
|
|
|
var _path = _interopRequireDefault(require("path"));
|
|
|
|
var _less = _interopRequireDefault(require("less"));
|
|
|
|
var _full = require("klona/full");
|
|
|
|
var _loaderUtils = require("loader-utils");
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
/* eslint-disable class-methods-use-this */
|
|
const trailingSlash = /[/\\]$/; // This somewhat changed in Less 3.x. Now the file name comes without the
|
|
// automatically added extension whereas the extension is passed in as `options.ext`.
|
|
// So, if the file name matches this regexp, we simply ignore the proposed extension.
|
|
|
|
const IS_SPECIAL_MODULE_IMPORT = /^~[^/]+$/; // `[drive_letter]:\` + `\\[server]\[sharename]\`
|
|
|
|
const IS_NATIVE_WIN32_PATH = /^[a-z]:[/\\]|^\\\\/i;
|
|
/**
|
|
* Creates a Less plugin that uses webpack's resolving engine that is provided by the loaderContext.
|
|
*
|
|
* @param {LoaderContext} loaderContext
|
|
* @returns {LessPlugin}
|
|
*/
|
|
|
|
function createWebpackLessPlugin(loaderContext) {
|
|
const resolve = loaderContext.getResolve({
|
|
conditionNames: ["less", "style"],
|
|
mainFields: ["less", "style", "main", "..."],
|
|
mainFiles: ["index", "..."],
|
|
extensions: [".less", ".css"]
|
|
});
|
|
|
|
class WebpackFileManager extends _less.default.FileManager {
|
|
supports(filename) {
|
|
if (filename[0] === "/" || IS_NATIVE_WIN32_PATH.test(filename)) {
|
|
return true;
|
|
}
|
|
|
|
if (this.isPathAbsolute(filename)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} // Sync resolving is used at least by the `data-uri` function.
|
|
// This file manager doesn't know how to do it, so let's delegate it
|
|
// to the default file manager of Less.
|
|
// We could probably use loaderContext.resolveSync, but it's deprecated,
|
|
// see https://webpack.js.org/api/loaders/#this-resolvesync
|
|
|
|
|
|
supportsSync() {
|
|
return false;
|
|
}
|
|
|
|
async resolveFilename(filename, currentDirectory) {
|
|
// Less is giving us trailing slashes, but the context should have no trailing slash
|
|
const context = currentDirectory.replace(trailingSlash, "");
|
|
const request = (0, _loaderUtils.urlToRequest)(filename, // eslint-disable-next-line no-undefined
|
|
filename.charAt(0) === "/" ? loaderContext.rootContext : undefined);
|
|
return this.resolveRequests(context, [...new Set([request, filename])]);
|
|
}
|
|
|
|
resolveRequests(context, possibleRequests) {
|
|
if (possibleRequests.length === 0) {
|
|
return Promise.reject();
|
|
}
|
|
|
|
return resolve(context, possibleRequests[0]).then(result => {
|
|
return result;
|
|
}).catch(error => {
|
|
const [, ...tailPossibleRequests] = possibleRequests;
|
|
|
|
if (tailPossibleRequests.length === 0) {
|
|
throw error;
|
|
}
|
|
|
|
return this.resolveRequests(context, tailPossibleRequests);
|
|
});
|
|
}
|
|
|
|
async loadFile(filename, ...args) {
|
|
let result;
|
|
|
|
try {
|
|
if (IS_SPECIAL_MODULE_IMPORT.test(filename)) {
|
|
const error = new Error();
|
|
error.type = "Next";
|
|
throw error;
|
|
}
|
|
|
|
result = await super.loadFile(filename, ...args);
|
|
} catch (error) {
|
|
if (error.type !== "File" && error.type !== "Next") {
|
|
return Promise.reject(error);
|
|
}
|
|
|
|
try {
|
|
result = await this.resolveFilename(filename, ...args);
|
|
} catch (webpackResolveError) {
|
|
error.message = `Less resolver error:\n${error.message}\n\n` + `Webpack resolver error details:\n${webpackResolveError.details}\n\n` + `Webpack resolver error missing:\n${webpackResolveError.missing}\n\n`;
|
|
return Promise.reject(error);
|
|
}
|
|
|
|
loaderContext.addDependency(result);
|
|
return super.loadFile(result, ...args);
|
|
}
|
|
|
|
loaderContext.addDependency(_path.default.normalize(result.filename));
|
|
return result;
|
|
}
|
|
|
|
}
|
|
|
|
return {
|
|
install(lessInstance, pluginManager) {
|
|
pluginManager.addFileManager(new WebpackFileManager());
|
|
},
|
|
|
|
minVersion: [3, 0, 0]
|
|
};
|
|
}
|
|
/**
|
|
* Get the less options from the loader context and normalizes its values
|
|
*
|
|
* @param {object} loaderContext
|
|
* @param {object} loaderOptions
|
|
* @returns {Object}
|
|
*/
|
|
|
|
|
|
function getLessOptions(loaderContext, loaderOptions) {
|
|
const options = (0, _full.klona)(typeof loaderOptions.lessOptions === "function" ? loaderOptions.lessOptions(loaderContext) || {} : loaderOptions.lessOptions || {});
|
|
const lessOptions = {
|
|
plugins: [],
|
|
relativeUrls: true,
|
|
// We need to set the filename because otherwise our WebpackFileManager will receive an undefined path for the entry
|
|
filename: loaderContext.resourcePath,
|
|
...options
|
|
};
|
|
const shouldUseWebpackImporter = typeof loaderOptions.webpackImporter === "boolean" ? loaderOptions.webpackImporter : true;
|
|
|
|
if (shouldUseWebpackImporter) {
|
|
lessOptions.plugins.unshift(createWebpackLessPlugin(loaderContext));
|
|
}
|
|
|
|
lessOptions.plugins.unshift({
|
|
install(lessProcessor) {
|
|
// eslint-disable-next-line no-param-reassign
|
|
lessProcessor.webpackLoaderContext = loaderContext;
|
|
}
|
|
|
|
});
|
|
return lessOptions;
|
|
}
|
|
|
|
function isUnsupportedUrl(url) {
|
|
// Is Windows path
|
|
if (IS_NATIVE_WIN32_PATH.test(url)) {
|
|
return false;
|
|
} // Scheme: https://tools.ietf.org/html/rfc3986#section-3.1
|
|
// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3
|
|
|
|
|
|
return /^[a-zA-Z][a-zA-Z\d+\-.]*:/.test(url);
|
|
}
|
|
|
|
function normalizeSourceMap(map) {
|
|
const newMap = map; // map.file is an optional property that provides the output filename.
|
|
// Since we don't know the final filename in the webpack build chain yet, it makes no sense to have it.
|
|
// eslint-disable-next-line no-param-reassign
|
|
|
|
delete newMap.file; // eslint-disable-next-line no-param-reassign
|
|
|
|
newMap.sourceRoot = ""; // `less` returns POSIX paths, that's why we need to transform them back to native paths.
|
|
// eslint-disable-next-line no-param-reassign
|
|
|
|
newMap.sources = newMap.sources.map(source => {
|
|
return _path.default.normalize(source);
|
|
});
|
|
return newMap;
|
|
} |