
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@mskcc/tailwind
Advanced tools
tailwind configuration file for MSKCC
You will need to install the following packages and add the preset to your tailwind.config.js file.
We also have postcss and stylesheet config files, but our tailwind config is the only one that is needed to incorporate DSM.
npm install --save-dev @mskcc/tailwind tailwindcss postcss postcss-import autoprefixer
Create the following files inside root directory of your project:
tailwind.config.jspostcss.config.js// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
presets: [require('@mskcc/tailwind/presets')],
content: [
'./src/**/*.{js,ts,jsx,tsx}',
// or wherever your files that will use tailwind lives
],
};
// postcss.config.js
module.exports = {
...require('@mskcc/tailwind/postcss.config'),
};
/* add the following to your global stylesheet */
@import '@mskcc/tailwind/styles.css';
bg-msk-[color]-[10-100]shadow-msk-elevation-[plus|minus]-[0-24]text-msk-[type]-[0-9]font-msk-[type]FAQs
Unknown package
We found that @mskcc/tailwind demonstrated a not healthy version release cadence and project activity because the last version was released 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.