Socket
Socket
Sign inDemoInstall

gulp-amp-custom

Package Overview
Dependencies
60
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-amp-custom

Gulp plugin to optimize CSS source for AMP HTML.


Version published
Weekly downloads
17
increased by1600%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

1.4.0

  • Updated amp-custom to v1.4.0.
  • Updated devDependencies.
  • Fixed CI config.

Readme

Source

gulp-amp-custom

License: MIT npm version Build Status

Gulp plugin to optimize CSS source for AMP HTML.

Maintenance of this plugin will be discontinued. Please use postcss-amp-custom.

Install

npm install --save-dev gulp-amp-custom

Use

const gulp = require('gulp');
const ampCustom = require('gulp-amp-custom');

gulp.task('test', () => {
  return gulp.src('./src/test.css')
    .pipe(ampCustom({
      enableByteLimit: true
    }))
    .pipe(gulp.dest('./dist/'));
});
/* ./src/test.css */
@charset "UTF-8";
body {
  font-size: 16px;
}
@page {
  margin: 15mm;
}
@page hoge {
  size: portrait;
  margin: 15mm;
}
a {
  color: #39c !important;
  text-decoration: none;
}
@viewport {
  min-width: 640px;
  max-width: 800px;
}
@supports not (display: flex) {
  .flexbox {
    overflow: hidden;
  }
  .flexbox div {
    float: left;
  }
}
/* ./dist/test.css */
body{font-size:16px}a{color:#39c;text-decoration:none}

Options

enableByteLimit

Type: Boolean

If the CSS source exceeds 75 KB, it issues an error.(Default: false)

License

MIT License.

Keywords

FAQs

Last updated on 30 Dec 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc