Socket
Socket
Sign inDemoInstall

rtlcss

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rtlcss - npm Package Compare versions

Comparing version 4.2.0 to 4.3.0

16

bin/rtlcss.js

@@ -281,7 +281,19 @@ #!/usr/bin/env node

process.on('SIGINT', () => {
processCSSFile(false, buffer)
try {
processCSSFile(false, buffer)
} catch (e) {
currentErrorcode = ErrorCodes.ProcessingError
printError('rtlcss: error processing payload')
printError(e)
}
process.exit()
})
process.stdin.on('end', () => {
processCSSFile(false, buffer)
try {
processCSSFile(false, buffer)
} catch (e) {
currentErrorcode = ErrorCodes.ProcessingError
printError('rtlcss: error processing payload')
printError(e)
}
})

@@ -288,0 +300,0 @@ }

# RTLCSS Changelog
## 4.3.0 - 27 Aug. 2024
- Return an error code when the parsed CSS `stdin` is invalid. **Thanks @lade-odoo**
## 4.2.0 - 24 Jul. 2024

@@ -4,0 +9,0 @@

2

package.json
{
"author": "Mohammad Younes",
"name": "rtlcss",
"version": "4.2.0",
"version": "4.3.0",
"description": "Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL)",

@@ -6,0 +6,0 @@ "homepage": "https://rtlcss.com/",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc