grunt-oc

3.0.13 • Public • Published

grunt-oc

Grunt wrapper for OpenComponents cli

linux build

OC cli command / grunt-oc tasks

  • oc dev => oc-dev and oc-dev-kill tasks
  • oc init => oc-init task
  • oc mock => oc-mock task
  • oc preview => oc preview task
  • oc publish => oc-publish task
  • oc registry => oc-registry task

Config example

grunt.initConfig({
  'oc-dev': {
    myFolder: {
      options: {
        dirPath: '.',
        port: 3030,
        baseUrl: 'http://localhost:3030/',
        hotReloading: false
      }
    }
  },
  'oc-dev-kill': {
    allInstances: {
      options: {}
    }
  },
  'oc-init': {
    newComponent: {
      options: {
        componentName: 'newComponent',
        templateType: 'jade'
      }
    }
  },
  'oc-mock': {
    getToggle: {
      options: {
        targetType: 'plugin',
        targetName: 'hello',
        targetValue: 'world'
      }
    }
  },
  'oc-preview': {
    myComponent: {
      options: {
        componentHref: 'https://components.com/my-component'
      }
    }
  },
  'oc-publish': {
    myComponent: {
      options: {
        registry: 'http://localhost:3030/',
        username: 'myuser',
        password: 'password',
        componentPath: './my-component/'
      }
    }
  }
});
 
grunt.loadNpmTasks('grunt-oc');

License

MIT

Package Sidebar

Install

npm i grunt-oc

Weekly Downloads

0

Version

3.0.13

License

MIT

Unpacked Size

13.6 kB

Total Files

14

Last publish

Collaborators

  • andyroyle
  • chriscartlidge
  • jankowiakmaria
  • jwhayes
  • matteofigus
  • ryantomlinson