My personal screeps.com scripts, various branches/tags for various states.

Gruntfile.js 359B

1234567891011121314151617181920
  1. module.exports = function(grunt) {
  2. var creds = grunt.file.readJSON("creds.json");
  3. grunt.loadNpmTasks('grunt-screeps');
  4. grunt.initConfig({
  5. screeps: {
  6. options: {
  7. email: creds.email,
  8. password: creds.password,
  9. branch: 'default',
  10. ptr: false
  11. },
  12. dist: {
  13. src: ['dist/*.js']
  14. }
  15. }
  16. });
  17. };