Skip to content

Commit

Permalink
Merge pull request #119 from js-template/release-check
Browse files Browse the repository at this point in the history
Release check
  • Loading branch information
zelal-dev authored Dec 10, 2024
2 parents 6445ff6 + cedf0d4 commit 6e38305
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "padma-monorepo",
"description": "Padma - The Next.js Framework for Strapi",
"version": "1.0.0-alpha.0",
"version": "0.0.4",
"private": true,
"workspaces": [
"packages/*",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/plugins/padma-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@padmadev/padma-backend",
"description": "Padma Backend",
"license": "MIT",
"version": "0.0.5",
"version": "0.0.6",
"keywords": [
"strapi",
"strapi-plugin",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@padmadev/core",
"version": "1.0.0-alpha.0",
"version": "0.0.4",
"description": "Padma- Nextjs frontend",
"license": "MIT",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion packages/padma/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@padmadev/padma",
"description": "Padma- Nextjs Framework for Strapi",
"version": "0.0.3-alpha.8",
"version": "0.0.4",
"author": "Zelal Hossain",
"bin": "./bin/run.js",
"bugs": "https://github.com/js-template/padma",
Expand Down
6 changes: 3 additions & 3 deletions packages/padma/src/commands/backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ export default class Backend extends Command {
}),
branch: Flags.string({
description: 'Template branch',
default: 'components-create-strapi5',
default: 'main',
}),
templatePath: Flags.string({
description: 'Template path',
default: 'apps/backend-v5',
default: 'packages/backend',
}),
noInteractive: Flags.boolean({
char: 'i',
Expand Down Expand Up @@ -55,7 +55,7 @@ export default class Backend extends Command {
const output = execSync(fullCommand, {stdio: 'inherit'})
this.log(output.toString())
} catch (error) {
this.error(`Failed to execute command: ${error instanceof Error ? error.message : error}`)
//this.error(`Failed to execute command: ${error instanceof Error ? error.message : error}`)
}
}
}

0 comments on commit 6e38305

Please sign in to comment.