Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@nowa/module-file
Advanced tools
export interface IBaseAction {
type: 'copy' | 'move' | 'remove' | 'empty' | 'ensure';
from: string;
}
export interface ISingleArgAction extends IBaseAction {
type: 'remove' | 'empty' | 'ensure';
}
export interface IDoubleArgAction extends IBaseAction {
type: 'copy' | 'move';
to: string;
}
export type SingleAction = ISingleArgAction | IDoubleArgAction;
export type Config = ['file', SingleAction | SingleAction[]];
const config1 = ['file', { type: 'copy', from: './src/lib/', to: './dist/' }]; // copy files
const config2 = ['file', { type: 'copy', from: './src/lib/*.js', to: './dist/' }]; // support glob
const config3 = ['file', { type: 'empty', from: './build/' }]; // empty a folder
const config4 = ['file', { type: 'ensure', from: './build/assets/js/' }]; // ensure a path
const config5 = ['file', { type: 'move', from: './build/index.js', to: './build/entry.js' }]; // move (rename) a file
const config6 = ['file', [{ type: 'remove', from: './build/' }, { type: 'remove', from: './dist/' }]]; // multiple actions
module-file
provides 5 kinds of actions
copy
copy files or foldersmove
move files or foldersremove
delete files or foldersempty
empty foldersensure
ensure a path is valid, create any folder if neededsome actions can have to
property.
from
can be a normal path or path with glob patterns, module-webpack
uses globby to resolve them;
relative paths will be treated from project root
(actually context
in nowa2
).
to
can only be used in action copy
& move
.
Caution, If you want to specify a folder, always add a slash /
to the end. Or it will be treaded as a file
if you have a project with a file file.js
└── file.js
with config { type: 'copy', from: './file.js', to: './dist' }
, it will be
├── dist ---- file, content same as file.js
└── file.js
with config { type: 'copy', from: './file.js', to: './dist/' }
, it will be
├── dist ---- folder
│ └── file.js ---- file
└── file.js
FAQs
the nowa file module
We found that @nowa/module-file demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.