New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

adjective

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adjective

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

  • 0.1.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

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) => {
    // ...
  }
);

FAQs

Package last updated on 21 Feb 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc