1.2.4 • Published 3 years ago

jmb v1.2.4

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

JMB

JMB is a scripts manager.

Installation

npm i -g jmb

Commands

First, you must init/setup :

jmb init

And you can edit .jmbrc :

{
    "scripts": [
        {
            "name": "run", // Required. Used for "jmb exec <name>"
            "clear": false, // Optional (default = false). If set to "true", clear console on start 
            "steps": [
                {
                    "displayName": "Starting", // Required. Used for show execution status
                    "run": "node ." // Required. The command to execute on step start
                }
            ]
        }
    ]
}

Save and close file.

For start a script, do :

jmb exec <name> [--suppress]

--suppress: If set, hide output overflow (2 lines)

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago