gulp-concat-css

WebJar for gulp-concat-css

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

gulp-concat-css
Последняя версия

Последняя версия

3.1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

gulp-concat-css
WebJar for gulp-concat-css
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/mariocasciaro/gulp-concat-css

Скачать gulp-concat-css

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/gulp-concat-css/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>gulp-concat-css</artifactId>
    <version>3.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/gulp-concat-css/
implementation 'org.webjars.npm:gulp-concat-css:3.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/gulp-concat-css/
implementation ("org.webjars.npm:gulp-concat-css:3.1.0")
'org.webjars.npm:gulp-concat-css:jar:3.1.0'
<dependency org="org.webjars.npm" name="gulp-concat-css" rev="3.1.0">
  <artifact name="gulp-concat-css" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='gulp-concat-css', version='3.1.0')
)
libraryDependencies += "org.webjars.npm" % "gulp-concat-css" % "3.1.0"
[org.webjars.npm/gulp-concat-css "3.1.0"]

Зависимости

compile (8)

Идентификатор библиотеки Тип Версия
org.webjars.npm » rework jar [1.0.0,1.1)
org.webjars.npm : lodash.defaults jar [3.0.0,4)
org.webjars.npm : vinyl jar [2.1.0,3)
org.webjars.npm : plugin-error jar [0.1.2,0.2)
org.webjars.npm : through2 jar [1.1.1,1.2)
org.webjars.npm : parse-import jar [2.0.0,3)
org.webjars.npm : rework-plugin-url jar [1.0.1,2)
org.webjars.npm : rework-import jar [2.0.0,3)

Модули Проекта

Данный проект не имеет модулей.

gulp-concat-css

Build Status NPM version Dependency Status Downloads

Concatenates css files, bubbling up @import statements (as per the standard), and optionally rebasing urls and inlining local @import statements.

Install

Install with npm.

npm install --save-dev gulp-concat-css

Examples

var gulp = require('gulp');
var concatCss = require('gulp-concat-css');

gulp.task('default', function () {
  return gulp.src('assets/**/*.css')
    .pipe(concatCss("styles/bundle.css"))
    .pipe(gulp.dest('out/'));
});

TIP: for a proper import inlining and url rebase, make sure you set the proper base for the input files.

API

concatCss(targetFile, options)

  • targetFile: The relative path of the generated file containing the concatenated css
  • options: (since 2.1.0)
    • inlineImports: (default true) Inline any local import statement found
    • rebaseUrls: (default true) Adjust any relative URL to the location of the target file.
    • includePaths: (default []) Include additional paths when inlining imports
    • commonBase: (default to the base property of the first file) Common base path from which files and urls resolve

License

MIT @ Mario Casciaro

Версии библиотеки

Версия
3.1.0
2.3.0