Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
dts-css-modules-loader
Advanced tools
A small Webpack loader to generate typings for your CSS-Modules. Created as a replacement for the frozend typings-for-css-modules-loader. This loader does not make any changes in content of styles, just creates *.d.ts
file during the work. It is assumed that the content will be preprocessed first by css-loader.
webpack
version is 5
npm i -D dts-css-modules-loader
# or
yarn add -D dts-css-modules-loader
{
test: /\.scss$/,
use: [
{
loader: 'style-loader',
options: {
esModule: false,
},
},
{
loader: 'dts-css-modules-loader',
options: {
namedExport: true
}
},
{
loader: 'css-loader',
options: {
// options for the v5 of css-loader
modules: {
exportLocalsConvention: 'camelCaseOnly',
localIdentName: '[local]'
}
}
},
'sass-loader'
]
}
namedExport
When the option is switched on classes exported as variables. Be sure you using camelCase
option of css-loader to avoid invalid name of variables.
// This file is generated automatically.
export const button: string;
export const buttonActive: string;
When option is off:
// This file is generated automatically.
export interface I_buttonScss {
'button': string
'buttonActive': string
}
declare const styles: I_buttonScss;
export = styles;
banner
Adds a "banner" prefix to each generated file.
customTypings
A function that accepts classes (an array of string) and returns the content of declaration file:
customTypings: classes => {
let content = '// This file is generated automatically\ndeclare const styles: {\n';
for (const c of classes) {
content += ` ${c}: string;\n`;
}
content += '};\nexport default styles;\n';
return content;
}
namedExport
and banner
option will be ignored
dropEmptyFile
If there are no classes, the typings file will not be generated, and the existing will be deleted.
import * as styles from './_button.scss';
To avoid errors about the absent module, you need to determine this:
/**
* Trap for `*.scss.d.ts` files which are not generated yet.
*/
declare module '*.scss' {
var classes: any;
export = classes;
}
When you add new classname Typescript compiler may not find the generated variable so you need to compile twice your files.
Licensed under the MIT license.
FAQs
webpack loader to generate typings for css modules
The npm package dts-css-modules-loader receives a total of 6,651 weekly downloads. As such, dts-css-modules-loader popularity was classified as popular.
We found that dts-css-modules-loader 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.