1.0.0 • Published 5 years ago

shipit-yaml v1.0.0

Weekly downloads
6
License
MIT
Repository
-
Last release
5 years ago

shipit-yaml

Load your config and tasks for Shipit from a yaml.

Features:

  • No js boilerplate
  • Simple
  • Declarative

Install

npm install shipit-yaml

Usage

Move your config and tasks to a yaml.

Old:

module.exports = shipit => {
  const user = "test";

  shipit.initConfig({
    default: {
      branch: "dev"
    },
    staging: {
      servers: "staging.myproject.com",
      workspace: `/home/${user}/website`
    },
    production: {
      servers: [
        {
          host: "app1.myproject.com",
          user: "john"
        },
        {
          host: "app2.myproject.com",
          user: "rob"
        }
      ],
      branch: "production",
      workspace: "/var/www/website"
    }
  });

  shipit.task("pwd", function() {
    return shipit.remote("pwd");
  });

  shipit.task("foo", async function() {
    await shipit.remote(`echo "${user}"`);
    await shipit.remote("bar");
    await shipit.remote("baz");
  });
};

New:

config.yml

---
vars:
  user: test
config:
  default:
    branch: dev
  staging:
    servers: staging.myproject.com
    workspace: /home/{{user}}/website
  production:
    servers:
      - host: "app1.myproject.com",
        user: "john"
      - host: "app2.myproject.com",
        user: "rob"
    branch: "production",
    workspace: "/var/www/website"
tasks:
  pwd:
    - pwd
  foo:
    - echo "{{user}}"
    - bar
    - baz

The plugin will replace {{user}} with {{user}} in vars.

const yamlPlugin = require("shipit-yml");

module.exports = shipit => {
  yamlPlugin("./config.yml")(shipit);
};

License

MIT

1.0.0

5 years ago