
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
customize-write-files
Advanced tools
Post-processor that stores the result of a customize-run in a local directory
Post-processor that stores the result of a customize-run in a local directory
The customize module is a framework for creating overridable configurations for different
engines. It is, in principle, designed to be platform independent (that's actually only half-true).
Engines running in customize
always return file-contents as JavaScript-object in the form
{
'engineName': {
'file.txt': 'contents of the file',
'subdir/file.txt': 'contents of the other file'
}
The contents of the file may be one of the following
utf-8
-encoded)The goal of customize-write-files
is to act as an NodeJS-adapter for customize
and store the result of customize
in a local directory structure.
This package will always support the latest version of NodeJS and as well as the current LTS version. In the future, it will not be considered a breaking change to drop support of a pre-LTS version of NodeJS.
npm install customize-write-files
The following example demonstrates how to use this module:
const customize = require('customize')
const write = require('customize-write-files')
// Load files from one directory and merge with second
customize()
.registerEngine('less', require('customize-engine-less'))
// Add one less file
.merge({
less: {
main: require.resolve('./main.less')
}
})
.run()
// Write contents to the "target"-directory
.then(write('target'))
// Output the names of the files being written
.then(console.log)
This will generate the following output
[ 'target/main.css', 'target/main.css.map' ]
customize-write-files
is published under the MIT-license.
See LICENSE.md for details.
For release notes, see CHANGELOG.md
See CONTRIBUTING.md.
4.0.4 (2020-01-27)
Note: Version bump only for package bootprint-monorepo
FAQs
Post-processor that stores the result of a customize-run in a local directory
The npm package customize-write-files receives a total of 1,537 weekly downloads. As such, customize-write-files popularity was classified as popular.
We found that customize-write-files 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
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
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.