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.
gulp-chmod
Advanced tools
Change permissions of Vinyl files
npm install --save-dev gulp-chmod
import gulp from 'gulp';
import chmod from 'gulp-chmod';
export default () => (
gulp.src('src/app.js')
.pipe(chmod(0o755))
.pipe(gulp.dest('dist'))
);
or
import gulp from 'gulp';
import chmod from 'gulp-chmod';
export default () => (
gulp.src('src/app.js')
.pipe(chmod({
owner: {
read: true,
write: true,
execute: true
},
group: {
execute: true
},
others: {
execute: true
}
}))
.pipe(gulp.dest('dist'))
);
Type: number | object
Can either be a chmod octal number or an object with the individual permissions specified.
Values depends on the current file, but these are the possible keys:
{
owner: {
read: true,
write: true,
execute: true
},
group: {
read: true,
write: true,
execute: true
},
others: {
read: true,
write: true,
execute: true
}
}
When read
, write
, and execute
are the same, you can simplify the object:
{
read: true
}
Pass undefined
to not set permissions on files. Useful if you only want to set permissions on directories.
Type: true | number | object
Same as fileMode
, but applies to directories.
Specify true
to use the same value as fileMode
.
Combine it with gulp-filter to only change permissions on a subset of the files.
import gulp from 'gulp';
import chmod from 'gulp-chmod';
import gulpFilter from 'gulp-filter';
const filter = gulpFilter('src/cli.js', {restore: true});
export default = () => (
gulp.src('src/*.js')
// Filter a subset of the files
.pipe(filter)
// Make them executable
.pipe(chmod(0o755))
// Bring back the previously filtered out files
.pipe(filter.restore)
.pipe(gulp.dest('dist'))
);
FAQs
Change permissions of Vinyl files
The npm package gulp-chmod receives a total of 24,571 weekly downloads. As such, gulp-chmod popularity was classified as popular.
We found that gulp-chmod demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.