We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40c3bb5 commit 4d669acCopy full SHA for 4d669ac
actions/publishProvider.js
@@ -123,7 +123,7 @@ const publishProvider = async (targetPath) => {
123
124
// Read .gitignore file and add its contents to the ignore list
125
const gitignorePath = path.join(folder, '.gitignore');
126
- const ignoreFiles = ['node_modules/**/*', '**/*.zip']; // Base ignore patterns
+ const ignoreFiles = ['**/*.zip']; // Base ignore patterns
127
128
if (fs.existsSync(gitignorePath)) {
129
const gitignoreContent = fs.readFileSync(gitignorePath, 'utf8');
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "codebolt-cli",
3
- "version": "1.1.44",
+ "version": "1.1.45",
4
"description": "A CLI tool for Codebolt",
5
"main": "codebolt.js",
6
"bin": {
0 commit comments