rollup-plugin-screeps-world
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

Rollup Screeps Plugin

Install

npm install --save-dev rollup-plugin-screeps-world

Usage

In rollup.config.js

import screeps from "rollup-plugin-screeps-world";

...

export default {
  ...
  sourcemap: true, // If set to true your source maps will be made screeps friendly and uploaded

  plugins: [
    ...
    screeps({configFile: "./screeps.json"})
  ]
}

Config File

rollup-plugin-screeps needs your screeps username/password and the server to upload to.

{
  "email": "you@domain.tld",
  "password": "pass",
  "protocol": "https",
  "hostname": "screeps.com",
  "port": 443,
  "path": "/",
  "branch": "auto"
}

If branch is set to "auto" rollup-plugin-screeps will use your current git branch as the name of the branch on screeps, if you set it to anything else that string will be used as the name of the branch.

/rollup-plugin-screeps-world/

    Package Sidebar

    Install

    npm i rollup-plugin-screeps-world

    Weekly Downloads

    14

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    13.8 kB

    Total Files

    11

    Last publish

    Collaborators

    • carsonburke