As per the title - Aspects should be optional.
This means that the contents usually found in an aspect should be able to reside within the root of an application.
From an upcoming blog/tutorial about BRJS and Angular:
Create the Todo App
Use the create-app command to scaffold a BRJS application.
$ ./brjs create-app brjstodo
For now, applications need to reside within an apps folder within the BladeRunnerJS directory. The above command will create an application called brjstodo within the apps directory. That directory will have the following contents:
apps/brjstodo
├── app.conf # Application configuration
├── index.html # Application entry point
├── src # For app-level JavaScript
├── resources # For other app resources
├── themes # CSS and images
├── libs # Other app libraries
Does this provide enough as an acceptance criteria?
As per the title - Aspects should be optional.
This means that the contents usually found in an aspect should be able to reside within the root of an application.
From an upcoming blog/tutorial about BRJS and Angular:
Create the Todo App
Use the
create-appcommand to scaffold a BRJS application.For now, applications need to reside within an
appsfolder within theBladeRunnerJSdirectory. The above command will create an application calledbrjstodowithin theappsdirectory. That directory will have the following contents:Does this provide enough as an acceptance criteria?