0.0.1 • Published 6 years ago

script-script v0.0.1

Weekly downloads
5
License
ISC
Repository
github
Last release
6 years ago

script script

A script for your scripts. Politely install config files and package scripts by reading from templates in your home directory, and never overwriting files without asking. Sometimes you want one command that will install dependencies, add config files, and add scripts to package.json.

install

$ npm install -g script-script

recipes

Write recipes in ~/.script-script/index.json.

{
    "travis": {
        "files": [ ["travis.yml", ".travis.yml"] ]
    },

    "husky": {
        "devinstall": ["husky"],
        "scripts": {
            "prepush": "./test/githook/prepush.sh"
        },
        "files": [ ["prepush.sh", "./test/githook/prepush.sh"] ]
    },

    "lint": {
        "devinstall": ["eslint", "eslint-config-minlint"],
        "scripts": {
            "lint": "eslint ."
        },
        "files": [
            ["eslintrc", ".eslintrc"],
            ["eslintignore", ".eslintignore"]
        ]
    }
}

Each key is a recipe name, and sub-keys point to actions to perform.

actions

devinstall

A list of package names that should be installed and added to devDependencies.

scripts

Scripts are added to package.json scripts.

files

An array of files to copy from ~/.script-script to the current directory. The files can be a string, or a pair of [source file, dest file]. If the path conflicts with an existing file, you will be prompted if you want to overwrite it.

cli use

$ script-script [recipe name]

example

$ script-script travis
0.0.1

6 years ago

0.0.0

6 years ago