Comparing teamMay:main...microsoft:main · teamMay/code-push-server
Commits on Nov 19, 2024
-
chore: add .env.example for easier environment setup and refine .giti…
…gnore (microsoft#15) I’ve made a couple of updates here to developer experience: - Added `.env.example` for easier environment setup This provides a template for environment variables, helping developers get their local setup configured quickly. - Updated `.gitignore` to exclude Azurite local storage files We’ve added patterns to ignore Azurite's local storage files `(__azurite_db_*, __blobstorage__, __queuestorage__)`, keeping the working directory cleaner during local development.
Commits on Jan 6, 2025
-
Add deployment: allow specifying deployment key (microsoft#60)
When migrating an existing app to the stand-alone server, it makes sense to re-use existing deployment keys. The Rest API already allows for explicitly specifying deployment key, so this PR just adds an optional argument to the `deployment add` command. Example usage: ```bash code-push-standalone deployment add my-app prod existing-key-abc123 ``` --------- Co-authored-by: Mikkel Gravgaard <mrg@skatteguiden.dk>
Commits on Feb 14, 2025
-
Add upper bound for parse-duration package version (microsoft#97)
NPM package [parse-duration](https://www.npmjs.com/package/parse-duration) version was bumped from `1.1.0` to `2.1.3` In PR microsoft#95 for CodePush CLI. This caused the build to fail with the following error: ```shell % npm run build > code-push-cli@0.0.1 build > tsc script/command-parser.ts:1321:21 - error TS2349: This expression is not callable. Type 'typeof import("/private/tmp/ms-code-push-server/cli/node_modules/parse-duration/index")' has no call signatures. 1321 return Math.floor(parseDuration(durationString)); ~~~~~~~~~~~~~ Found 1 error in script/command-parser.ts:1321 ``` As current code-base is not compatible with `parse-duration` versions `2.0.0+`, restrict `parse-duration` to use version `1.x.y`.