Skip to content

v1.11.1

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Jun 23:50
  • Fix spinner flashing on windows terminal
  • debug logging overhauled to JSON format
  • CI mode using --quiet or environment variable set CI=true that has minimal output.
  • more colors for a prettier experience.
  • parse package json for variables with this syntax. can be used with sectionctl deploy to avoid specifying any flags.
{
  "name": "cra",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "serve": "^11.3.2"
  },
  "Section": {
    "accountId": "1887", // same as  -a or --account-id
    "appId": "7749", // same as -i or --app-id
    "environment": "Production", // same as -e or --environment
    "module-name":  "nodejs", // same as --app-path
    "start-script": "start" // not presently supported, but may be in the future
  },
  "scripts": {
    "start": "serve -s build -l 4001 -l 8080",
    "deploy": "sectionctl deploy"
  }
}