1.0.0 • Published 2 years ago

@julr/japa-factorio-plugin v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

@julr/japa-factorio-plugin

The Japa plugin for Factorio.

Installation

pnpm add @julr/japa-factorio-plugin
// bin/test.ts

configure({
  ...processCliArgs(process.argv.slice(2)),
  ...{
    plugins: [
      factorio({
        database: {
          // See https://knexjs.org/guide/#configuration-options
          // for more information
          connection: {
            host: 'localhost',
            user: 'root',
            password: 'password',
            database: 'factorio',
          } 
        },
      }),
    ],
  },
  // ...
})

// ...