Security News
Supply Chain Attack Detected in @solana/web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
arc-resolver
Advanced tools
new Resolver(fs)
import Resolver from 'arc-resolver';
fs
(optional): a filesystem that conforms to the node.js fs
api. Defaults to the built-in fs
moduleclearCache()
getMatchesSync(path)
getDirMatchesSync(dir, request)
resolveSync(path, flags)
isAdaptiveSync(path)
new MatchSet(matches)
an iterableimport { MatchSet} from 'arc-resolver';
matches
(required): an Array
of Object
s with the keys flags
and value
:
flags
: an Array
of strings representing the required flags for the value
value
: any value to associate with the flags
count
: the number of possible matchesdefault
: the default value (the least specific, the one with no flags)match(flags)
: return the matching value
for a flagset
flags
: an Object
where each key represents a flag and the value is a boolean indicating whether that flag is activemap(fn)
: return a new MatchSet
with the mapped values
fn
: a Function
that is passed value
, flags
and index
, returns a new value
arc
adapts files based on a filenaming convension:
style.css
style[android].css
Write your application as though the flagged version of the file did not exist:
@import url('./style.css');
When bundling the css (using arc-webpack
or arc-lasso
), if the android
flag is set, style[android].css
will replace style.css
in the output bundle.
Use the plus (+
) to specify that all of the listed flags need to match:
style[mobile+android].css
Use the comma (,
) to specify that one of the listed flags needs to match:
style[android,ios].css
The plus (+
) has higher precedence than the comma (,
), similar to how &&
has higher precedence than ||
in JavaScript.
For example,
style[mobile+ios,mobile+android].css
Is logically equivalent to:
(mobile && ios) || (mobile && android)
To increase the precedence of a group, you can wrap it in []
:
style[mobile+[ios,android]].css
This is logically equivalent to the previous example.
More Flags === Higher Specificity
Given the following files:
style.css
style[mobile,tablet,headset,desktop].css
style[mobile+[ios,android]].css
style[mobile+ios+chrome,safari].css
The matching logic looks something like:
if mobile & ios & chrome
'style[mobile+ios+chrome,safari].css'
else if mobile & ios
'style[mobile+[ios,android]].css'
else if mobile & android
'style[mobile+[ios,android]].css'
else if safari
'style[mobile+ios+chrome,safari].css'
else if mobile
'style[mobile,tablet,headset,desktop].css'
else if tablet
'style[mobile,tablet,headset,desktop].css'
else if headset
'style[mobile,tablet,headset,desktop].css'
else if desktop
'style[mobile,tablet,headset,desktop].css'
else
'style.css'
FAQs
<img src="https://img.shields.io/github/license/eBay/ar
We found that arc-resolver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.