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.
This gem allows you integrate the TailwindCSS Standalone CLI in your Jekyll site. The Tailwind CLI is a standalone executable that doesn't need NodeJS or any other external dependency.
To add this gem to your project you must include it in your Gemfile:
group :jekyll_plugins do
gem 'jekyll-tailwind'
end
module.exports = {
content: ["./**/*.html"],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/container-queries')
],
};
<link rel="stylesheet" href="{{ "/assets/css/app.css" | relative_url }}">
The first time you build your Jekyll site, this gem will automatically download the Tailwind CLI for your platform and use it to build your CSS. The Tailwind CLI will be saved in _tailwind/tailwind-VERSION-PLATFORM
. It is recommended that you add this file to your .gitignore
and don't commit it to your repository.
It is important to note that subsequent runs will use the existing Tailwind CLI and won't download it again.
By default Tailwind will:
tailwind.config.js
file that lives in your project's root (more info at the Tailwind docs)._site/assets/css/app.css
.postcss.config.js
is present in the root directory.But it's possible to tweak these settings through _config.yml
file:
tailwind:
config: config/tailwind.config.js
input: assets/css/app.css # or [assets/css/app.css, assets/css/web.css]
output: _site/assets/css/web.css
postcss: config/postcss.config.js # default is nil
minify: true # defaults to false
It's possible to pick particular version of tailwindd by locking tailwindcss-ruby
dependency to certain version. Add following to your Gemfile:
gem 'tailwindcss-ruby', '>=3', '<4'
or if you're looking for a 4v:
gem 'tailwindcss-ruby', '>=4'
You may run into issues with tailwind executable, please refer to troubleshooting section in tailwindcss-ruby gem.
FAQs
Unknown package
We found that jekyll-tailwind demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.