This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

adjective

0.1.1 • Public • Published

Adjective

A blazing fast, dead simple, no-config build system.

Warning: under development — use at your own risk

Installation

npm install adjective --save-dev

Usage

adj build

API

config.js

module.exports = {
  source: 'src', // folder from which files will be read
  destination: 'build', // folder to which files will be written
  ignore: /.*/, // regex or function applied to each file's path to determine if it's run through adjective. Matched files aren't watched; a transform should be used to filter out any source files that shouldn't be written to the destination
  transforms: [ // array of transformations to be applied to each file
    require('adjective-filter')()
  ]
};

transform

const transform = require('adjective/transform');
 
module.exports = transform(
  '.js',
  (file, callback) => {
    // ...
  }
);

Readme

Keywords

none

Package Sidebar

Install

npm i adjective

Weekly Downloads

2

Version

0.1.1

License

MIT

Last publish

Collaborators

  • jakelazaroff