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: sindresorhus/ora
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.1
Choose a base ref
...
head repository: sindresorhus/ora
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.0.0
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Dec 22, 2023

  1. Require Node.js 18

    sindresorhus committed Dec 22, 2023
    Copy the full SHA
    675590f View commit details
  2. 8.0.0

    sindresorhus committed Dec 22, 2023
    Copy the full SHA
    41d75f2 View commit details
Showing with 18 additions and 23 deletions.
  1. +0 −4 .github/funding.yml
  2. +2 −2 .github/workflows/main.yml
  3. +16 −17 package.json
4 changes: 0 additions & 4 deletions .github/funding.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -14,8 +14,8 @@ jobs:
- 18
- 16
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
33 changes: 16 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ora",
"version": "7.0.1",
"version": "8.0.0",
"description": "Elegant terminal spinner",
"license": "MIT",
"repository": "sindresorhus/ora",
@@ -11,9 +11,13 @@
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=16"
"node": ">=18"
},
"scripts": {
"test": "xo && ava && tsd"
@@ -41,25 +45,20 @@
"dependencies": {
"chalk": "^5.3.0",
"cli-cursor": "^4.0.0",
"cli-spinners": "^2.9.0",
"cli-spinners": "^2.9.2",
"is-interactive": "^2.0.0",
"is-unicode-supported": "^1.3.0",
"log-symbols": "^5.1.0",
"stdin-discarder": "^0.1.0",
"string-width": "^6.1.0",
"is-unicode-supported": "^2.0.0",
"log-symbols": "^6.0.0",
"stdin-discarder": "^0.2.0",
"string-width": "^7.0.0",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@types/node": "^20.10.5",
"ava": "^5.3.1",
"get-stream": "^7.0.1",
"get-stream": "^8.0.1",
"transform-tty": "^1.0.11",
"tsd": "^0.28.1",
"xo": "^0.55.0"
},
"xo": {
"rules": {
"@typescript-eslint/no-redundant-type-constituents": "off"
}
"tsd": "^0.30.0",
"xo": "^0.56.0"
}
}