
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
@netlify/git-utils
Advanced tools
Utility for dealing with modified, created, deleted files since a git commit
Utility for dealing with modified, created, deleted files since a git commit.
/* Export the Netlify Plugin */
export const onPreBuild = function ({ utils }) {
const { git } = utils
/* Do stuff if files modified */
if (git.modifiedFiles.length !== 0) {
console.log('Modified files:', git.modifiedFiles)
}
/* Do stuff only if html code edited */
const htmlFiles = git.fileMatch('**/*.html')
console.log('html files git info:', htmlFiles)
if (htmlFiles.edited.length !== 0) {
console.log('>> Run thing because HTML has changed\n')
}
//
/* Do stuff only if markdown files edited */
const markdownFiles = git.fileMatch('**/*.md')
console.log('markdown files git info:', markdownFiles)
if (markdownFiles.modified.length !== 0) {
console.log('>> Run thing because Markdown files have been created/changed/deleted\n')
}
/* Do stuff only if css files edited */
const cssFiles = git.fileMatch('**/*.css')
if (cssFiles.deleted.length !== 0) {
console.log('>> Run thing because css files have been deleted\n')
console.log(cssFiles)
}
}
The git
util includes the following signature.
export const onPreBuild = function ({ utils }) {
console.log(utils.git)
// {
// fileMatch: [Function], <-- Lookup function. See below
// modifiedFiles: [ Array of all modified files ],
// createdFiles: [ Array of all created files ],
// deletedFiles: [ Array of all deleted files ],
// commits: [ Array of commits with details ],
// linesOfCode: [AsyncFunction: linesOfCode] <-- how many lines of code have changed
// }
//
}
git.fileMatch()
is a glob matcher function to detect the git status of a pattern of files.
export const onPreBuild = function ({ utils }) {
const cssFiles = utils.git.fileMatch('**/*.css')
console.log('cssFiles', cssFiles)
// {
// modified: [ 'just-changed.css', 'just-changed-two.css' ],
// created: [ 'just-added.css' ],
// deleted: [ 'just-deleted.css' ],
// edited: [ 'just-changed.css', 'just-changed-two.css', 'just-added.css', 'just-deleted.css' ]
// }
//
}
This was originally found in danger.js and extracted into this utility
FAQs
Utility for dealing with modified, created, deleted files since a git commit
The npm package @netlify/git-utils receives a total of 151,301 weekly downloads. As such, @netlify/git-utils popularity was classified as popular.
We found that @netlify/git-utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 16 open source maintainers 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.