Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
resolve-url-loader
Advanced tools
Webpack loader that resolves relative paths in url() statements based on the original source file
The resolve-url-loader package is a webpack loader that resolves relative paths in url() statements based on the original source file. This is particularly useful when dealing with source maps and pre-processors like Sass, as it allows assets referenced in CSS to be correctly found and bundled by webpack.
Resolving relative URLs
This feature allows resolve-url-loader to adjust relative paths in url() statements so that they point to the correct location in a webpack build. The code sample shows how to include resolve-url-loader in a webpack configuration.
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: [
'style-loader',
'css-loader',
'resolve-url-loader'
]
}
]
}
};
Source map support
resolve-url-loader can handle source maps, which is essential for debugging processed stylesheets like those written in Sass. The code sample demonstrates how to enable source map support in webpack loaders, including resolve-url-loader.
module.exports = {
module: {
rules: [
{
test: /\.scss$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: { sourceMap: true }
},
{
loader: 'resolve-url-loader',
options: { sourceMap: true }
},
{
loader: 'sass-loader',
options: { sourceMap: true }
}
]
}
]
}
};
file-loader resolves import/require() on a file into a url and emits the file into the output directory. It's similar to resolve-url-loader in that it helps with asset management, but it doesn't resolve relative URLs based on the original source file.
url-loader works like file-loader but can return a DataURL if the file is smaller than a byte limit. It's similar to resolve-url-loader as it deals with URLs in CSS and other files, but it doesn't specifically address the resolution of relative paths.
Webpack loader that resolves relative paths in url() statements based on the original source file.
Use in conjunction with the sass-loader and specify your asset url()
relative to the .scss
file in question.
This loader will use the source-map from the SASS compiler to locate the original .scss
source file and write a more Webpack-friendly path for your asset. The CSS loader can then locate your asset for individual processing.
# via yarn
yarn add resolve-url-loader --dev
# via npm
npm install --save resolve-url-loader --dev
Plain CSS works fine:
var css = require('!css-loader!resolve-url-loader!./file.css');
or using sass-loader:
var css = require('!css-loader!resolve-url-loader!sass-loader?sourceMap!./file.scss');
Use in tandem with the style-loader
to compile sass and to add the css rules to your document:
require('!style!css!resolve-url!./file.css');
and
require('!style-loader!css-loader!resolve-url-loader!sass-loader?sourceMap!./file.scss');
It is preferable to adjust your webpack.config
so to avoid having to prefix every require()
statement:
module.exports = {
module: {
loaders: [
{
test : /\.css$/,
loaders: ['style-loader', 'css-loader', 'resolve-url-loader']
}, {
test : /\.scss$/,
loaders: ['style-loader', 'css-loader', 'resolve-url-loader', 'sass-loader?sourceMap']
}
]
}
};
Note that source maps must be enabled on any preceding loader. In the above example we use sass?sourceMap
.
In some use cases (no preceding transpiler) there will be no incoming source map. Therefore we do not warn if the source-map is missing.
However if there is an incoming source-map then it must imply source
information at each CSS url()
statement.
-loader
Your
Webpack.config.js
should always use the long-form of the loader name (i.e. the-loader
suffix).
There is another package called resolve-url
which Webpack can confuse with resolve-url-loader
.
There are other common examples. Such as jshint
and jshint-loader
packages being confused.
These conflicts are very hard to debug and will send you crazy. Your Webpack.config.js
should always use the long-form of the loader name (i.e. the -loader
suffix)
Options may be set using query parameters or by using programmatic parameters. Programmatic means the following in your webpack.config
.
module.exports = {
resolveUrlLoader: {
...
}
}
Where ...
is a hash of any of the following options.
absolute
Forces the url() to be resolved to an absolute path. This is considered
bad practice so only do it if you know what you are doing.
sourceMap
Generate a source-map.
silent
Do not display warnings on CSS syntax or source-map error.
fail
Syntax or source-map errors will result in an error.
keepQuery
Keep query string and hash within url. I.e. url('./MyFont.eot?#iefix')
, url('./MyFont.svg#oldiosfix')
.
debug
Show verbose information on the file paths being searched.
root
An optional directory within which search may be performed. Relative paths are permitted. Where omitted process.cwd()
is used and should be sufficient for most use cases.
Note that query parameters take precedence over programmatic parameters.
A rework process is run on incoming CSS.
Each url()
statement that implies an asset triggers a file search using node fs
operations. The asset should be relative to the original source file that was transpiled. This file is determined by consulting the incoming source-map at the point of the url()
statement.
Usually the asset is found relative to the original source file. However in some cases there is no immediate match (cough bootstrap cough) and we so we start searching both deeper and shallower from the starting directory.
Shallower paths must be limited to avoid the whole file system from being considered. Progressively shallower paths within the root
will be considered. Paths featuring a package.json
or bower.json
file will not be considered.
If the asset is not found then the url()
statement will not be updated with a Webpack module-relative path. However if the url()
statement has no source-map source
information the loader will fail.
The loader will also fail when input source-map sources
cannot all be resolved relative to some consistent path within root
.
Where url()
statements are created in a SASS mixin the file may be expected to be relative to the mixin. Obviously this is not the desired behaviour.
This may be because rework is limited in how it works with the sass-loader
source maps.
Unfortunately you need to work around this until we can investigate other solutions.
This loader was written for Webpack 1 and has been tweaked to also support with Webpack 2.
If you find any Webpack 2 problems please comment on any similar existing issue or raise a new one.
IMPORTANT
Avoid the combination of Webpack 1 with node-sass@^4.0.0.
Use Webpack 2 if you need latest node-sass
Since node-sass@>=4.0.0
source-maps have sometimes featured negative column values. Since this loader relies on source-maps this can cause a fatal error.
I don't have a lot of data on this. If you are stuck in Webpack 1 and find that this combination actually works ok for you please let me know.
Webpack is difficult to configure but extremely rewarding.
I am happy for you to raise an issue to ask a question regarding this package. However ensure you follow the check-list first.
Currently I am not dogfooding this loader in my own work. I may rely on you being able to isolate the problem in a simple example project and to help debug.
I am happy this loader helps so many people. Open-source is provided as-is so please try not project your frustrations. There are some really great people who follow this project who can help.
Before raising a new issue:
I am happy to take pull requests, however:
FAQs
Webpack loader that resolves relative paths in url() statements based on the original source file
The npm package resolve-url-loader receives a total of 4,641,914 weekly downloads. As such, resolve-url-loader popularity was classified as popular.
We found that resolve-url-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.