Single-File-Module Support
- Fixed single file module resolution.
If you have file like env.js in your base folder, then define/require like following
define(['env'], function(env) {});and
define(['env!env/file'], function(file) {});will be properly resolved.
- Added pre-commit hook and linting via eslint.