UNPKG

strider

Version:

Brilliant continuous deployment platform

30 lines 890 B
// Object for storing common state between modules. module.exports = { project_types: { 'node.js': { description: 'nave, npm install, npm test', plugins: ['node'] }, python: { description: 'virtualenv, pip install, ./setup.py test or py.test', plugins: ['python'] }, ruby: { description: 'bundle install, bundle exec rake test', plugins: ['ruby'] }, go: { description: 'go get, go test', plugins: ['go'] }, web: { description: 'sauce, qunit, and jelly to test your javascript in a browser.', plugins: ['sauce', 'qunit', 'jelly'] }, custom: { description: "Don't auto-enable any plugins.", plugins: [] } } }; //# sourceMappingURL=common.js.map