🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

affected-files

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

affected-files

Retrieves all files which affected in current git branch

Source
npmnpm
Version
4.1.2
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Affected files

Returns a list of js/ts(x) files, which affected in current branch compared to mergeBase (origin/master by default).

CLI

$ npm run afiles
// or
$ yarn afiles

Affected files: (modified, **affected only**)

  **__tests__/common.spec.ts**
  affected-files.config.js
  bin/cli.js
  src/index.ts
  src/options.ts
  src/types.ts

total: 6

Done in 0.82s.

Explanation

Lets say you have a repo with files

a.js
dependent-from-a.js
dependent-from--dependent-from-a.js
not-dependent-from-a.js

If a.js was modified in your merge request, files dependent-from-a.js and dependent-from--dependent-from-a.js also affected. So, affected-files will return

[ 'a.js', 'dependent-from-a.js', 'dependent-from--dependent-from-a.js' ]

Extensions

.js, .jsx, .ts, .tsx are supported. Other extensions – not yet.

Configuration

import getAffected from 'affected-files'
// import { getAffectedSync } from 'affected-files'

const affected = await getAffected(options)

All options are optional.

Optiondefaultdescription
mergeBaseorigin/masterBranch or revision which will be used to take a git diff.
cwdprocess.cwd()Absolute path of cwd folder, where to find files.
missing[]An array of strings, which should not be resolved. For example, in most cases there is no need to resolve react. Used for perfprmance optimization. Also, it could be used in tuple form filename.js ≥≥≥ ../dependency, which disables ../dependency resolving only in filename.js.
pattern**/*Glob pattern of your source files.
modifiedgit diff ...An array of modified files paths. By default it is evaluated from git ls-files relative to mergeBase, but you could define custom modified array.
usink[]An array of glob patterns of files, which considered as universal sink in dependency graph. That means, every tracked file in your repo is dependent from every usink file. For example, you need to build full storybook every time you have affected something in ./.storybook. Then just use getAffected(pattern, { usink: '.storybook/*' }). Note: every usink must match pattern
trackedgit ls-tree ...An array of files, which would be used for dependency tree building. E.g. files in node_modules are not participating in dependency traversing. Note: by default untracked but non-ignored files are included.
absolutefalseIf true, returns absolute paths of affected files, relative to options.cwd otherwise.
dotfalseIf true, includes folders and files, starts with dot.

affected-files.config.js

Place this file in the project root folder (cwd), and export your options.

Get all dependent files from single file

yarn afiles src/options.ts

custom modified: src/options.ts
affected files (modified, **affected only**):

  **__tests__/common.spec.ts**
  src/index.ts
  src/options.ts

total: 3

Using in CI

  • affected-files uses git, so, be sure, git is available in docker image
  • affected-files uses origin/master revision to compare, so, be sure a) origin/master is exists on runner b) origin/master is up to date.

git fetch && git rev-parse origin/master – that cmd resolves all problems, or fail otherwise. Use it before using affected-files.

If git is not available only on some docker images, you could save affected list to file and use it everywhere in CI via artifacts.

FAQs

Package last updated on 12 Sep 2019

Did you know?

Socket

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