Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 13.59.91.46
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
gulp-autoprefixer /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
1.55
KB
-rw-rw-r--
2022-08-30 11:49
license
1.09
KB
-rw-rw-r--
2022-08-30 11:49
package.json
962
B
-rw-rw-r--
2022-08-30 11:49
readme.md
1.41
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
# gulp-autoprefixer > Prefix CSS with [Autoprefixer](https://github.com/postcss/autoprefixer) *Issues with the output should be reported on the Autoprefixer [issue tracker](https://github.com/postcss/autoprefixer/issues).* ## Install ``` $ npm install --save-dev gulp-autoprefixer ``` ## Usage ```js const gulp = require('gulp'); const autoprefixer = require('gulp-autoprefixer'); exports.default = () => ( gulp.src('src/app.css') .pipe(autoprefixer({ cascade: false })) .pipe(gulp.dest('dist')) ); ``` ## API ### autoprefixer(options?) #### options Type: `object` See the Autoprefixer [options](https://github.com/postcss/autoprefixer#options). ## Source Maps Use [gulp-sourcemaps](https://github.com/gulp-sourcemaps/gulp-sourcemaps) like this: ```js const gulp = require('gulp'); const sourcemaps = require('gulp-sourcemaps'); const autoprefixer = require('gulp-autoprefixer'); const concat = require('gulp-concat'); exports.default = () => ( gulp.src('src/**/*.css') .pipe(sourcemaps.init()) .pipe(autoprefixer()) .pipe(concat('all.css')) .pipe(sourcemaps.write('.')) .pipe(gulp.dest('dist')) ); ``` ## Tip If you use other PostCSS based tools, like `cssnano`, you may want to run them together using [`gulp-postcss`](https://github.com/postcss/autoprefixer#gulp) instead of `gulp-autoprefixer`. It will be faster, as the CSS is parsed only once for all PostCSS based tools, including Autoprefixer.