Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ce89e3f
CL-2062 | +Harshi | Fix skip environment variables option with --vari…
SakshiKoli-CS Oct 31, 2025
a6cec1f
Merge pull request #68 from contentstack/cl-2062
SakshiKoli-CS Nov 4, 2025
df7a271
fix: suppress error message in non-development environments
Harshi-Shah-CS Nov 5, 2025
1125814
Merge pull request #69 from contentstack/cl-2079
Harshi-Shah-CS Nov 5, 2025
a9ce937
Add AGENTS.md file
dhruvparekh12 Nov 11, 2025
41e3935
Merge pull request #70 from contentstack/CL-2100
dhruvparekh12 Nov 11, 2025
6c924f0
fix: environment variable parsing for URL formatted values
Harshi-Shah-CS Nov 13, 2025
b474704
Merge pull request #71 from contentstack/cl-2121
Harshi-Shah-CS Nov 13, 2025
4d88437
fix: allow --variable-type flag to accept multiple values
SakshiKoli-CS Nov 13, 2025
5af1aac
Merge pull request #72 from contentstack/cl-1656
SakshiKoli-CS Nov 13, 2025
93a1222
fix: handle empty server command input properly
Harshi-Shah-CS Nov 18, 2025
61dfabf
Merge pull request #73 from contentstack/cl-2125
SakshiKoli-CS Nov 18, 2025
f5d4d26
Merge pull request #74 from contentstack/development
SakshiKoli-CS Dec 10, 2025
22cdfd3
Merge branch 'main' into staging
aravindbuilt Dec 11, 2025
8f40568
Update form-data to 4.0.4 and add dependency overrides
Harshi-Shah-CS Dec 11, 2025
01032c5
Merge pull request #76 from contentstack/cl-2180
Harshi-Shah-CS Dec 11, 2025
fee53fb
Merge pull request #77 from contentstack/development
Harshi-Shah-CS Dec 11, 2025
709b67d
chore: update version in package.json file
Harshi-Shah-CS Dec 11, 2025
d14da8e
Merge pull request #79 from contentstack/cl-2180
Harshi-Shah-CS Dec 11, 2025
fb88241
Merge pull request #80 from contentstack/development
Harshi-Shah-CS Dec 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Testing instructions

- Follow the Arrange, Act, Assert structure when writing unit tests.
- When writing unit tests, create individual unit tests that cover each logical branching in the code.
- For the happy path, can we have a single unit test where all the top level if conditions are executed? This might help with reducing the number of total unit tests created and still give same test coverage.
- For the tests for edge cases do not create separate describe blocks, keep the hierarchy flat.
- For the tests for edge cases, do not skip assertions, its still worth adding all assertions similar to the happy paths tests.
- Use only jest for writing test cases and refer existing unit test under the /src folder.
- Do not create code comments for any changes.

66 changes: 44 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentstack/cli-launch",
"version": "1.9.3",
"version": "1.9.4",
"description": "Launch related operations",
"author": "Contentstack CLI",
"bin": {
Expand All @@ -20,7 +20,7 @@
"/oclif.manifest.json"
],
"dependencies": {
"@apollo/client": "^3.11.8",
"@apollo/client": "^3.14.0",
"@contentstack/cli-command": "^1.4.0",
"@contentstack/cli-utilities": "^1.12.0",
"@oclif/core": "^4.2.7",
Expand All @@ -37,7 +37,7 @@
"cross-fetch": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"form-data": "^4.0.0",
"form-data": "4.0.4",
"graphql": "^16.9.0",
"ini": "^3.0.1",
"lodash": "^4.17.21",
Expand Down Expand Up @@ -106,6 +106,10 @@
"test:jest:coverage": "jest --coverage",
"prepare": "husky"
},
"overrides": {
"axios": "~1.10.0",
"form-data": "4.0.4"
},
"engines": {
"node": ">=14.0.0"
},
Expand Down
Loading