feat: provide usable UMD builds for all packages (#2141)
This commit is contained in:
committed by
Shawn Erquhart
parent
1d935c704d
commit
82cc7941cc
@ -40,7 +40,7 @@ const getFolderEntries = (folder, extension) => {
|
||||
.reverse();
|
||||
};
|
||||
|
||||
export default class TestRepo {
|
||||
export default class TestBackend {
|
||||
constructor(config, options = {}) {
|
||||
this.config = config;
|
||||
this.assets = [];
|
||||
|
@ -1,2 +1,8 @@
|
||||
export TestBackend from './implementation';
|
||||
export AuthenticationPage from './AuthenticationPage';
|
||||
import Control from './implementation';
|
||||
import AuthenticationPage from './AuthenticationPage';
|
||||
|
||||
export const NetlifyCmsBackendTest = {
|
||||
Control,
|
||||
AuthenticationPage,
|
||||
};
|
||||
export { Control, AuthenticationPage };
|
||||
|
Reference in New Issue
Block a user