Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Jan 9, 2025
1 parent bbe79f1 commit c6ede83
Show file tree
Hide file tree
Showing 8 changed files with 401 additions and 439 deletions.
147 changes: 74 additions & 73 deletions apps/admin/package.json
Original file line number Diff line number Diff line change
@@ -1,75 +1,76 @@
{
"name": "admin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@editorjs/delimiter": "^1.2.0",
"@editorjs/list": "^1.6.0",
"@editorjs/quote": "^2.4.0",
"@editorjs/underline": "^1.0.0",
"@types/react": "18.2.79",
"@webiny/app-admin": "0.0.0",
"@webiny/app-admin-users-cognito": "0.0.0",
"@webiny/app-form-builder": "0.0.0",
"@webiny/app-headless-cms": "0.0.0",
"@webiny/app-page-builder": "0.0.0",
"@webiny/app-serverless-cms": "0.0.0",
"@webiny/cli": "0.0.0",
"@webiny/plugins": "0.0.0",
"@webiny/react-properties": "0.0.0",
"@webiny/serverless-cms-aws": "0.0.0",
"core-js": "^3.0.1",
"cross-fetch": "^3.0.4",
"prop-types": "^15.7.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"regenerator-runtime": "^0.13.5",
"theme": "^1.0.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"cross-env": "^5.2.1"
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"watch": "yarn webiny run watch",
"build": "yarn webiny run build"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
},
"adio": {
"ignore": {
"dependencies": [
"theme",
"theme-1",
"@webiny/app-apw",
"@webiny/app-headless-cms",
"@webiny/cli",
"@webiny/react-properties",
"tslib"
],
"src": [
"@okta/okta-signin-widget",
"@okta/okta-auth-js",
"@webiny/app-admin-okta",
"@webiny/app-admin-auth0",
"@webiny/app-file-manager",
"@webiny/app-tenant-manager",
"@webiny/app-theme-manager",
"@webiny/app-page-builder-elements",
"@webiny/form",
"@webiny/ui"
]
}
}
"name": "admin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@editorjs/delimiter": "^1.2.0",
"@editorjs/list": "^1.6.0",
"@editorjs/quote": "^2.4.0",
"@editorjs/underline": "^1.0.0",
"@types/react": "18.2.79",
"@webiny/app-admin": "0.0.0",
"@webiny/app-admin-users-cognito": "0.0.0",
"@webiny/app-form-builder": "0.0.0",
"@webiny/app-headless-cms": "0.0.0",
"@webiny/app-page-builder": "0.0.0",
"@webiny/app-serverless-cms": "0.0.0",
"@webiny/cli": "0.0.0",
"@webiny/plugins": "0.0.0",
"@webiny/react-properties": "0.0.0",
"@webiny/serverless-cms-aws": "0.0.0",
"core-js": "^3.0.1",
"cross-fetch": "^3.0.4",
"my-custom-extension": "1.0.0",
"prop-types": "^15.7.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"regenerator-runtime": "^0.13.5",
"theme": "^1.0.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"cross-env": "^5.2.1"
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"watch": "yarn webiny run watch",
"build": "yarn webiny run build"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
},
"adio": {
"ignore": {
"dependencies": [
"theme",
"theme-1",
"@webiny/app-apw",
"@webiny/app-headless-cms",
"@webiny/cli",
"@webiny/react-properties",
"tslib"
],
"src": [
"@okta/okta-signin-widget",
"@okta/okta-auth-js",
"@webiny/app-admin-okta",
"@webiny/app-admin-auth0",
"@webiny/app-file-manager",
"@webiny/app-tenant-manager",
"@webiny/app-theme-manager",
"@webiny/app-page-builder-elements",
"@webiny/form",
"@webiny/ui"
]
}
}
}
7 changes: 6 additions & 1 deletion apps/admin/src/Extensions.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
// This file is automatically updated via scaffolding utilities.
import React from "react";
import { Extension as MyCustomExtensionExtension } from "my-custom-extension";

export const Extensions = () => {
return <></>;
return (
<>
<MyCustomExtensionExtension />
</>
);
};
Loading

0 comments on commit c6ede83

Please sign in to comment.