Skip to content

Commit

Permalink
Fix readme location in Lowcoder CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
FalkWolsky committed Jan 6, 2024
1 parent ef96a58 commit 031bc86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/packages/lowcoder-cli/actions/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default async function buildAction(options) {
});

// copy readme file
const readmePath = findReadmeFileName(paths.appPath);
const readmePath = findReadmeFileName(paths.appPath + '/src');
if (readmePath) {
const destinationPath = resolve(paths.appOutPath, 'readme.md');
copySync(readmePath, destinationPath);
Expand Down
2 changes: 1 addition & 1 deletion client/packages/lowcoder-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lowcoder-cli",
"description": "CLI tool used to start build publish lowcoder components",
"version": "0.0.29",
"version": "0.0.30",
"license": "MIT",
"bin": "./index.js",
"type": "module",
Expand Down

0 comments on commit 031bc86

Please sign in to comment.