Socket
Socket
Sign inDemoInstall

flex-attributes

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flex-attributes - npm Package Compare versions

Comparing version 2.0.3 to 2.0.4

11

gulpfile.js
var gulp = require('gulp');
var stylus = require('gulp-stylus');
var postcss = require('gulp-postcss');
var autoprefixer = require('autoprefixer');
var cssnano = require('cssnano');
// Get one .styl file and render
gulp.task('build', function () {
gulp.task('default', function () {
var processors = [
autoprefixer(),
// autoprefixer({browsers: ['last 1 versions']}),
cssnano(),
];
return gulp.src('./src/flex-attributes.styl')
.pipe(stylus())
.pipe(postcss(processors))
.pipe(gulp.dest('./'));
});

5

package.json
{
"name": "flex-attributes",
"version": "2.0.3",
"version": "2.0.4",
"description": "A css library that allows you to compose mobile first, adaptive flexbox layouts and grids with attributes.",

@@ -17,5 +17,8 @@ "main": "flex-attributes.css",

"devDependencies": {
"autoprefixer": "^6.5.3",
"cssnano": "^3.8.0",
"gulp": "^3.9.1",
"gulp-postcss": "^6.2.0",
"gulp-stylus": "^2.5.0"
}
}
Flex Attributes
=============
This library allows you to compose layout with flexbox in html, allowing for rapid prototyping, easy visulization of layout in HTML, and reduced CSS footprint and duplication.
This library (1kb gzipped) allows you to compose layout with flexbox in html, allowing for rapid prototyping, easy visulization of layout in HTML, and reduced CSS footprint and duplication.

@@ -6,0 +6,0 @@ Installation

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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