Alex Baumgertner

Results 37 comments of Alex Baumgertner

Could you show your `less` slyle files? Probably you are trying to compile someone invalid `.less` file.

Oh, I mean your `less` style files from `public/stylesheets/`. :)

From top code: I see `sysPath.join.bind(null, parent));` then looking up and see `parent = sysPath.dirname(path);`, finally `LESSCompiler.prototype.getDependencies = function(data, path, callback) {`, maybe `path` param contain wrong value.

In general, you should find .less style files in your project and validate them.

Do you use [assets-compiler](https://github.com/compoundjs/assets-compiler/blob/master/lib/assets-compiler.js#L328) or another compiler (by grunt or gulp)? It's strange warning...: ``` warn←[0m: `-c, --config` option is deprecated. Use `--env` in `config.overrides` instead ```

Looks like you defined your routers incorrect. Maybe you should use namespace, here is an [example](https://github.com/1602/compound#routing): ``` js map.namespace('admin', function (admin) { admin.resources('posts', {middleware: basic_auth, except: ['show']}, function (post) {...

@cmled Thanks, much better than http://compoundjs.com/man/ :)

/cc @xgenvn @zxqfox @xpepermint Maybe we can help to upgrading to expressjs 4.x? Lets offer this to maintainer :)

I have weekends to work for it. But I am not very familiar with expressjs and compoundjs, am learning these at the time.