Skip to content

Commit 6445ff6

Browse files
authored
Merge pull request #118 from js-template/release-check
remote plugin added instead of local
2 parents 111424f + 662e77c commit 6445ff6

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

packages/backend/config/plugins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default ({ env }) => ({
22
"padma-backend": {
33
enabled: true,
4-
resolve: "./src/plugins/padma-backend",
4+
// resolve: "./src/plugins/padma-backend",
55
},
66
upload: {
77
config: {

packages/backend/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@padmadev/backend",
3-
"version": "1.0.0",
3+
"version": "1.0.0-alpha.0",
44
"private": true,
55
"description": "A Strapi application",
66
"scripts": {
@@ -12,6 +12,7 @@
1212
"strapi": "strapi"
1313
},
1414
"dependencies": {
15+
"@padmadev/padma-backend": "^0.0.5",
1516
"@strapi/plugin-users-permissions": "5.4.0",
1617
"@strapi/provider-upload-cloudinary": "^5.4.1",
1718
"@strapi/strapi": "^5.4.0",

packages/backend/src/plugins/padma-backend/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ To integrate Padma’s custom Strapi plugin, follow these steps:
1111
If you already have Strapi installed, add the Padma plugin by running the following command:
1212

1313
```bash
14-
npm install padma-plugin
14+
npm install @padmadev/padma-backend
15+
```
16+
17+
```bash
18+
yarn add @padmadev/padma-backend
1519
```
1620

1721
2. **Configure the Plugin**

packages/backend/src/plugins/padma-backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@padmadev/padma-backend",
33
"description": "Padma Backend",
44
"license": "MIT",
5-
"version": "0.0.4-alpha.1",
5+
"version": "0.0.5",
66
"keywords": [
77
"strapi",
88
"strapi-plugin",

packages/backend/types/generated/components.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,6 @@ export interface HeaderTopBar extends Struct.ComponentSchema {
473473
left_content: Schema.Attribute.Text;
474474
right_content: Schema.Attribute.Component<'config.link', true>;
475475
style: Schema.Attribute.Component<'config.style-section', false>;
476-
477476
};
478477
}
479478

0 commit comments

Comments
 (0)