Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AlinaNova21 committed Sep 9, 2017
0 parents commit 23dd9d8
Show file tree
Hide file tree
Showing 8 changed files with 1,946 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
auth.js
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# ZeSwarm
7 changes: 7 additions & 0 deletions auth.sample.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
email: 'emailOrUsername',
password: 'password',
host: 'server1.screepspl.us',
port: 443,
secure: true
}
12 changes: 12 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const gulp = require('gulp')
const screeps = require('gulp-screeps')
const auth = require('./auth.js')

gulp.task('default', ['screeps'])

gulp.task('screeps', [], () => {
auth.branch = auth.branch || 'default'
auth.ptr = auth.ptr || false
gulp.src(`src/*.js`)
.pipe(screeps(auth))
})
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "screeps",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ags131/screeps.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ags131/screeps/issues"
},
"homepage": "https://github.com/ags131/screeps#readme",
"dependencies": {},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-screeps": "^1.0.3"
}
}
Loading

0 comments on commit 23dd9d8

Please sign in to comment.