* 💣 removes exposed GCS files adapter
- Should fix problems with GCS
- Throws error that shows the right repo
6 lines
167 B
JavaScript
6 lines
167 B
JavaScript
export function useExternal(name, moduleName) {
|
|
return function() {
|
|
throw `${name} is not provided by parse-server anymore; please install ${moduleName}`;
|
|
}
|
|
}
|