
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@makeomatic/deploy
Advanced tools
Provides convenient deploy tools, which automate publishing of docker images, documentation & testing
npm i @makeomatic/deploy -D
const Promise = require('bluebird');
const { inspectPromise } = require('@makeomatic/deploy');
// simple test cases that illustrate inspectPromise utility
describe('Promise verification', () => {
it('rejects request', () => {
return Promise
.reject(new Error('some great error'))
.reflect()
.then(inspectPromise(false))
.then((err) => {
assert.equal(err.message, 'some great error');
return null;
});
});
it('promise does not reject', () => {
return Promise
.resolve('banana')
.reflect()
.then(inspectPromise())
.then((response) => {
assert.equal(response, 'banana');
return null;
});
});
});
Commands:
docker manages docker lifecycle
test <command> performs tests in docker
Options:
--node, -n node version to use when building [default: "7.8.0"]
--env, -E node environment to build for [default: "production"]
--project, -p project name where this is used [default: "makeomatic-deploy"]
--version, -v version of the project to build [default: "1.5.0"]
--pkg package json path
[default: "/Users/vitaly/projects/makeomatic-deploy/package.json"]
--help Show help [boolean]
bin/cli.js docker
Commands:
build builds docker image for a project
push pushes previously build docker images
release performs build, tagging and push in one operation
tag tags built docker image
Options:
--node, -n node version to use when building [default: "7.8.0"]
--env, -E node environment to build for [default: "production"]
--project, -p project name where this is used
[default: "makeomatic-deploy"]
--version, -v version of the project to build [default: "1.5.0"]
--pkg package json path
[default: "/Users/vitaly/projects/makeomatic-deploy/package.json"]
--help Show help [boolean]
--repository, --repo docker repository to use [default: "makeomatic"]
--include_node, --in includes node version in the tag
[boolean] [default: true]
--docker_file, -f path to docker file [string] [default: "./Dockerfile"]
--extra_tags, -T list of additional tags for the image
[array] [default: []]
cli.js test <command>
performs tests in docker
Commands:
cli.js test auto-compose prepares docker-compose file based on config
cli.js test compose installs compose on the system
cli.js test init adds basic files for testing
cli.js test run performs testing
Options:
--node, -n node version to use when building
[default: "9.3.0"]
--env, -E node environment to build for
[default: "production"]
--project, -p project name where this is used
[default: "deploy"]
--repository, --repo docker repository to use
[default: "makeomatic"]
--version, -v version of the project to build
[default: "0.0.0-development"]
--pkg package json path
[default: "/Users/vitaly/projects/@makeomatic/deploy/package.json"]
--docker_compose docker-compose file for testing
[string] [default: "./test/docker-compose.yml"]
--auto_compose [boolean] [default: false]
--tester_flavour [string] [default: "tester"]
--extras any extras for tester docker container, will
be merged [string] [default: {}]
--services enable listed services
[array] [choices: "redis", "redisCluster", "redisSentinel", "postgres",
"rabbitmq"]
--docker_compose_version, --dcv docker-compose version to use
[default: "1.11.2"]
--docker_compose_force, --dcf forces to install local copy of
docker-compose in case of version mismatch
[boolean] [default: false]
--tests, -t glob for test files
[string] [default: "./test/suites/**/*.js"]
--no_cleanup, -C cleanup automatically
[boolean] [default: false]
--wait_before_tests, --sleep how much time to wait after docker-compose up
[number] [default: 0]
--report_dir report dir for coverage
[default: "./coverage"]
--test_framework test framework to use [default: "mocha"]
--coverage whether to upload coverage or not
[boolean] [default: false]
--root binary root path on the tester
[default: "/src/node_modules/.bin"]
--rebuild, -r list modules to rebuild during testing
[array] [default: []]
--on_fail, --fail arbitrary code to execute on test failure
--custom_run custom run command for the tests
--gyp run nody-gyp-rebuild before tests
[boolean] [default: false]
--arbitrary_exec arbitrary commands to exec in docker tester
[array] [default: []]
--pre pre commands to run [array] [default: []]
--nycCoverage set to --no-nycCoverage to disable it
[boolean] [default: true]
--help Show help [boolean]
FAQs
Common build and deploy tasks wrapped in a cli
The npm package @makeomatic/deploy receives a total of 19 weekly downloads. As such, @makeomatic/deploy popularity was classified as not popular.
We found that @makeomatic/deploy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.