Skip to content

Commit 6e38305

Browse files
authored
Merge pull request #119 from js-template/release-check
Release check
2 parents 6445ff6 + cedf0d4 commit 6e38305

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "padma-monorepo",
33
"description": "Padma - The Next.js Framework for Strapi",
4-
"version": "1.0.0-alpha.0",
4+
"version": "0.0.4",
55
"private": true,
66
"workspaces": [
77
"packages/*",

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.5",
5+
"version": "0.0.6",
66
"keywords": [
77
"strapi",
88
"strapi-plugin",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@padmadev/core",
3-
"version": "1.0.0-alpha.0",
3+
"version": "0.0.4",
44
"description": "Padma- Nextjs frontend",
55
"license": "MIT",
66
"author": {

packages/padma/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@padmadev/padma",
33
"description": "Padma- Nextjs Framework for Strapi",
4-
"version": "0.0.3-alpha.8",
4+
"version": "0.0.4",
55
"author": "Zelal Hossain",
66
"bin": "./bin/run.js",
77
"bugs": "https://github.com/js-template/padma",

packages/padma/src/commands/backend.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ export default class Backend extends Command {
2121
}),
2222
branch: Flags.string({
2323
description: 'Template branch',
24-
default: 'components-create-strapi5',
24+
default: 'main',
2525
}),
2626
templatePath: Flags.string({
2727
description: 'Template path',
28-
default: 'apps/backend-v5',
28+
default: 'packages/backend',
2929
}),
3030
noInteractive: Flags.boolean({
3131
char: 'i',
@@ -55,7 +55,7 @@ export default class Backend extends Command {
5555
const output = execSync(fullCommand, {stdio: 'inherit'})
5656
this.log(output.toString())
5757
} catch (error) {
58-
this.error(`Failed to execute command: ${error instanceof Error ? error.message : error}`)
58+
//this.error(`Failed to execute command: ${error instanceof Error ? error.message : error}`)
5959
}
6060
}
6161
}

0 commit comments

Comments
 (0)