Releases: adonisjs/application
Releases · adonisjs/application
Adding support for defining providers inside the rcFile
Now, one can define providers inside the .adonisrc.json
file vs creating start/app
file and also the preloads
array inside the same file can have plain strings as well.
- docs: update api docs e462fc1
- chore(package): update peer dependency version 8fcb43e
- feat: allow defining rcfile.preloads as a string 3c69713
- feat: add support for defining providers, aceProviders inside rcfile 36e010f
- refactor: use process.env.ADONIS_ACE_CWD to get the workspace working directory e294be7
- chore: update rc schema file 477acbd
Changing the way we accept adonisJs version
- refactor: offloading task of finding the correct adonisjs version on the consumer 62a014f
Adding support to register commands inside adonisrc file
Adding support for typescript flag in rcFile
Updating rc file schema and removing processor property
Updating underlying dependencies
- chore(package): update dependencies 8a06b29
Adding support for metaFiles to define processors for themselves
Earlier one can define copyToBuild
files, which adonis-cli
will copy to the build folder. However, that limits to just copying files. The newer API even allows running own processors on a given file or set of files under a pattern
Migrating to AdonisJs
Updating underlying dependencies
- chore(package): update dependencies 2925b02
Added support to configure namespaces
Now one can configure base namespace for conventional namespaces. For example
{
"namespaces": {
"httpControllers": "App/Controllers/Http"
}
}
- feat: add support for namespaces in rcFile 7d254af