Skip to content

Commit 3aa9a12

Browse files
Merge branch staging into fix/merge-development-to-beta
2 parents 3dff992 + e60106c commit 3aa9a12

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+4733
-3317
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/setup-node@v4
1616
with:
1717
node-version: '22.x'
18-
18+
1919
- name: Enable Corepack
2020
run: corepack enable
2121

@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Install root dependencies
2626
run: pnpm install
27-
27+
2828
- name: Reading Configuration
2929
id: release_config
3030
uses: rgarcia-phi/[email protected]
@@ -223,6 +223,10 @@ jobs:
223223
if: ${{env.release_releaseAll == 'true' || env.release_plugins_export-to-csv == 'true'}}
224224
working-directory: ./packages/contentstack-export-to-csv
225225
run: npm install
226+
- name: Compiling export to csv
227+
if: ${{ steps.export-to-csv-installation.conclusion == 'success' }}
228+
working-directory: ./packages/contentstack-export-to-csv
229+
run: npm run prepack
226230
- name: Publishing export to csv
227231
uses: JS-DevTools/npm-publish@v3
228232
if: ${{ steps.export-to-csv-installation.conclusion == 'success' }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ snyk_output.log
2424
# Snyk Security Extension - AI Rules (auto-generated)
2525
.cursor/rules/snyk_rules.mdc
2626
**/migration-logs
27-
**/migration-logs/**
27+
**/migration-logs/**
28+
*.logs

packages/contentstack-export-to-csv/.editorconfig

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": "oclif"
2+
"extends": [
3+
"oclif",
4+
"oclif-typescript"
5+
]
36
}

packages/contentstack-export-to-csv/.eslintrc.json

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,31 @@
1-
*-debug.log
2-
*-error.log
3-
/.nyc_output
1+
# Build output
42
/dist
5-
/tmp
6-
/yarn.lock
7-
coverage
8-
node_modules
9-
data
10-
logs
3+
/lib
4+
5+
# Dependencies
6+
/node_modules
7+
8+
# TypeScript
9+
*.tsbuildinfo
10+
tsconfig.tsbuildinfo
11+
12+
# oclif
13+
/oclif.manifest.json
14+
15+
# Coverage
16+
/.nyc_output
17+
/coverage
18+
19+
# OS files
20+
.DS_Store
21+
22+
# IDE
23+
.idea/
24+
.vscode/
25+
26+
# Logs
27+
*.log
28+
npm-debug.log*
29+
30+
# Test output
31+
/test-results
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"require": [
3+
"ts-node/register"
4+
],
5+
"watch-extensions": [
6+
"ts"
7+
],
8+
"recursive": true,
9+
"reporter": "spec",
10+
"timeout": 60000
11+
}

packages/contentstack-export-to-csv/.snyk

Lines changed: 0 additions & 10 deletions
This file was deleted.

packages/contentstack-export-to-csv/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2026 Contentstack
3+
Copyright (c) Contentstack
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
node "%~dp0\dev.js" %*

0 commit comments

Comments
 (0)