feat: provide usable UMD builds for all packages (#2141)
This commit is contained in:
committed by
Shawn Erquhart
parent
1d935c704d
commit
82cc7941cc
@ -22,20 +22,15 @@
|
||||
"js-base64": "^2.5.1",
|
||||
"semaphore": "^1.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"cross-env": "^5.2.0",
|
||||
"webpack": "^4.29.6",
|
||||
"webpack-cli": "^3.2.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@emotion/core": "^10.0.9",
|
||||
"@emotion/styled": "^10.0.9",
|
||||
"immutable": "^3.7.6",
|
||||
"lodash": "^4.17.10",
|
||||
"netlify-cms-lib-auth": "^2.0.4",
|
||||
"netlify-cms-lib-util": "^2.1.0",
|
||||
"netlify-cms-ui-default": "^2.0.6",
|
||||
"prop-types": "^15.6.2",
|
||||
"react": "^16.4.1"
|
||||
"lodash": "^4.17.11",
|
||||
"netlify-cms-lib-auth": "^2.0.6-beta.0",
|
||||
"netlify-cms-lib-util": "^2.1.3-beta.0",
|
||||
"netlify-cms-ui-default": "^2.4.1-beta.0",
|
||||
"prop-types": "^15.7.2",
|
||||
"react": "^16.8.4"
|
||||
}
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ import API from './API';
|
||||
const MAX_CONCURRENT_DOWNLOADS = 10;
|
||||
|
||||
// Implementation wrapper class
|
||||
export default class Bitbucket {
|
||||
export default class BitbucketBackend {
|
||||
constructor(config, options = {}) {
|
||||
this.config = config;
|
||||
this.options = {
|
||||
|
@ -1,3 +1,10 @@
|
||||
export BitbucketBackend from './implementation';
|
||||
export API from './API';
|
||||
export AuthenticationPage from './AuthenticationPage';
|
||||
import Control from './implementation';
|
||||
import API from './API';
|
||||
import AuthenticationPage from './AuthenticationPage';
|
||||
|
||||
export const NetlifyCmsBackendBitbucket = {
|
||||
Control,
|
||||
API,
|
||||
AuthenticationPage,
|
||||
};
|
||||
export { Control, API, AuthenticationPage };
|
||||
|
Reference in New Issue
Block a user