20507b5dd5
- Apps are marked as removed in 3.0, never officially launched and have been deprecated for at least 2 years. - We've slowly removed bits that got in our way or were insecure over time meaning they mostly didn't work - This cleans up the remainder of the logic - The tables should be cleaned up in a future major
24 lines
612 B
JavaScript
24 lines
612 B
JavaScript
/**
|
|
* # Package Utils
|
|
*
|
|
* Ghost has / is in the process of gaining support for several different types of sub-packages:
|
|
* - Themes: have always been packages, but we're going to lean more heavily on npm & package.json in future
|
|
* - Adapters: replace fundamental pieces like storage, will become npm modules
|
|
*
|
|
* These utils facilitate loading, reading, managing etc, packages from the file system.
|
|
*/
|
|
|
|
module.exports = {
|
|
get read() {
|
|
return require('./read');
|
|
},
|
|
|
|
get parse() {
|
|
return require('./parse');
|
|
},
|
|
|
|
get filter() {
|
|
return require('./filter');
|
|
}
|
|
};
|