adaltas/node-nikita

engine: support interpretation a string as a module path

sergkudinov opened this issue · 1 comments

A string should be interpreted as the module path and will be automatically imported.

Example

This:

touch = require './touch'
nikita touch

Should be same as these:

nikita './touch'
// or
nikita handler: './touch'

Fixed with 25ff5fc