We are going to build off the work of npm and how they handle package specification. When a project is found ObbyLang will search for a package file with either the yml, json or conf extension. Package files will need to specify the name and version like a node package, for example
{
"name": "my-awesome-package",
"version": "1.0.0"
}
Code will be bootstrapped through the index.js of the package and require will need to be implemented so the index can bootstrap the whole project.
We are going to build off the work of npm and how they handle package specification. When a project is found ObbyLang will search for a
packagefile with either theyml,jsonorconfextension. Package files will need to specify the name and version like a node package, for exampleCode will be bootstrapped through the index.js of the package and
requirewill need to be implemented so the index can bootstrap the whole project.