![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@meniga/icons
Advanced tools
The icons library is to keep all of our custom icon webfonts in one place.
In Bank42 we use the MeniconActions font for action icons (Icon component) and MeniconCategories fonts for category icons (CategoryIcon component)
The Lato font is used in MMS and Merchant Portal
In order to use a custom font you need to import it to your applications LESS theme, example:
@import '~@meniga/icons/menicon-actions/less/menicon';
@import '~@meniga/icons/menicon-categories/less/menicon-categories';
body, input {
font-family: Arial, Tahoma, Verdana, Helvetica, Sans-Serif;
}
.Icon {
&:before {
font-family: 'MeniconActions';
}
}
.CategoryIcon.Icon {
&:before {
font-family: 'MeniconCategories';
}
}
.Textarea-input {
font-family: Arial, Tahoma, Verdana, Helvetica, Sans-Serif;
}
and then you need to add this file (let's call it fonts.less) as as entry in your custom webpack config, example:
const { resolve } = require('path')
module.exports = function ( { plugins } ) {
return {
entry: {
Fonts: resolve(__dirname, './app/assets/styles/Fonts.less'),
},
...
}
}
If you have a new webfont (e.g. .zip file from our designers) with the new icons you need extract the file and copy the contents over to @meniga/icons.
The contents of MeniconActions should be copied to the menicon-actions folder, and the contents of MeniconCategories should be copied to the menicon-categories folder.
Then you need to open your command line tool in the root of the @meniga/icons repo and run the following script:
npm run generate
This will read the SVG files from the fonts and generate new versions of the LESS files that your application is importing.
Then just commit the updated files to git.
If you want to get more details from the generation, such as knowing about duplicate icons, missing mappings etc, run:
npm run generate-debug
FAQs
Unknown package
The npm package @meniga/icons receives a total of 261 weekly downloads. As such, @meniga/icons popularity was classified as not popular.
We found that @meniga/icons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.