Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: unjs/std-env
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.5.0
Choose a base ref
...
head repository: unjs/std-env
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.6.0
Choose a head ref
  • 9 commits
  • 7 files changed
  • 5 contributors

Commits on Nov 14, 2023

  1. chore(release): v3.5.0

    pi0 committed Nov 14, 2023
    Copy the full SHA
    e1bfb39 View commit details

Commits on Nov 23, 2023

  1. feat: add zeabur provider (#93)

    Yuanlin Lin authored Nov 23, 2023
    Copy the full SHA
    c8ce8bb View commit details
  2. Copy the full SHA
    1812956 View commit details

Commits on Nov 27, 2023

  1. chore(deps): update all non-major dependencies (#99)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 27, 2023
    Copy the full SHA
    690cc4a View commit details
  2. chore(deps): update autofix-ci/action digest to bee19d7 (#98)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 27, 2023
    Copy the full SHA
    0447eea View commit details

Commits on Dec 1, 2023

  1. chore(deps): update all non-major dependencies (#101)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Dec 1, 2023
    Copy the full SHA
    b1946c1 View commit details
  2. fix(isColorSupported): inverted condition for TERM=dumb (#97)

    Co-authored-by: Pooya Parsa <pooya@pi0.io>
    NamesMT and pi0 authored Dec 1, 2023
    Copy the full SHA
    b8172a7 View commit details
  3. chore: update lockfile

    pi0 committed Dec 1, 2023
    Copy the full SHA
    2685bb6 View commit details
  4. Copy the full SHA
    bb86834 View commit details
Showing with 955 additions and 594 deletions.
  1. +1 −1 .github/workflows/autofix.yml
  2. +17 −0 CHANGELOG.md
  3. +7 −7 package.json
  4. +923 −582 pnpm-lock.yaml
  5. +1 −2 src/flags.ts
  6. +5 −1 src/providers.ts
  7. +1 −1 src/runtimes.ts
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
@@ -21,6 +21,6 @@ jobs:
- run: pnpm install
- name: Fix lint issues
run: pnpm run lint:fix && pnpm vitest run --update
- uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc
- uses: autofix-ci/action@bee19d72e71787c12ca0f29de72f2833e437e4c9
with:
commit-message: "chore: apply automated fixes"
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,23 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## v3.5.0

[compare changes](https://github.com/unjs/std-env/compare/v3.4.3...v3.5.0)

### 🚀 Enhancements

- Add `aws_amplify` provider ([#91](https://github.com/unjs/std-env/pull/91))

### 🏡 Chore

- Update dependencies ([9addee3](https://github.com/unjs/std-env/commit/9addee3))

### ❤️ Contributors

- Pooya Parsa ([@pi0](http://github.com/pi0))
- Kaushik Gnanaskandan <kaushik.subman@gmail.com>

## v3.4.3

[compare changes](https://github.com/unjs/std-env/compare/v3.4.2...v3.4.3)
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "std-env",
"version": "3.4.3",
"version": "3.5.0",
"description": "Runtime agnostic JS utils",
"repository": "unjs/std-env",
"license": "MIT",
@@ -29,18 +29,18 @@
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@types/node": "^20.10.1",
"@vitest/coverage-v8": "^0.34.6",
"changelogen": "^0.5.5",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"esbuild": "^0.19.8",
"eslint": "^8.54.0",
"eslint-config-unjs": "^0.2.1",
"jiti": "^1.21.0",
"prettier": "^3.1.0",
"rollup": "^4.4.0",
"typescript": "^5.2.2",
"rollup": "^4.6.1",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
},
"packageManager": "pnpm@8.10.0"
"packageManager": "pnpm@8.11.0"
}
Loading