Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Modular CSS bundler. Works with npm modules like browserify does.
Features
$ npm install sheetify
js api
const sheetify = require('sheetify')
const path = require('path')
const opts = {
use: [ [ 'sheetify-cssnext', { sourcemap: false } ] ],
basedir: __dirname
}
sheetify(path.join(__dirname, 'index.css'), opts, function (err, css) {
if (err) throw err
console.log(css)
})
js stream api
const sheetify = require('sheetify/stream')
const path = require('path')
const opts = {
use: [ [ 'sheetify-cssnext', { sourcemap: false } ] ],
basedir: __dirname
}
sheetify(path.join(__dirname, 'index.css'), opts)
.pipe(process.stdout)
cli api
Usage: sheetify [options] <target>
Options:
-h, --help Output usage information
-v, --version Output version number
-u, --use Use a sheetify transform
-b, --basedir Set the project base directory
Examples:
$ sheetify index.js > bundle.css # Bundle CSS to a file
$ sheetify -u sheetify-cssnext index.js # Use a transform
Docs: https://github.com/sheetify/sheetify
Bugs: https://github.com/sheetify/sheetify/issues
js api
const browserify = require('browserify')
const path = require('path')
browserify(path.join(__dirname, './index.js'))
.transform('sheetify/transform')
.bundle()
.pipe(process.stdout)
package.json transform
{
"name": "my-app",
"browserify":{
"transform": [
"sheetify/transform"
]
}
}
cli
$ browserity -t sheetify/transform index.js > bundle.js
FAQs
Modular CSS bundler
The npm package sheetify receives a total of 124 weekly downloads. As such, sheetify popularity was classified as not popular.
We found that sheetify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.