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: bizon/amazon-ids
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.2.2
Choose a base ref
...
head repository: bizon/amazon-ids
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 1,834 additions and 1,227 deletions.
  1. +1 −1 .github/workflows/release.yml
  2. +5 −5 .github/workflows/tests.yml
  3. +1 −1 .node-version
  4. +3 −3 README.md
  5. +8 −8 package.json
  6. +1,815 −1,208 pnpm-lock.yaml
  7. +1 −1 tsconfig.json
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: pnpm

- name: Install dependencies
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: pnpm

- name: Install dependencies
@@ -39,7 +39,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: pnpm

- name: Install dependencies
@@ -60,16 +60,16 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Run tests
run: pnpm test -- --runInBand --ci --reporters=default --reporters=github-actions
run: pnpm test --runInBand --ci --reporters=default --reporters=github-actions

- name: Upload code coverage to codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# amazon-ids

> Collection of Amazon identifiers
Collection of Amazon identifiers

[![npm version](https://badgen.net/npm/v/@bizon/amazon-ids)](https://www.npmjs.com/package/@bizon/amazon-ids)
[![npm version](https://img.shields.io/npm/v/@bizon/amazon-ids)](https://www.npmjs.com/package/@bizon/amazon-ids)
[![codecov](https://codecov.io/github/bizon/amazon-ids/graph/badge.svg?token=U6I6anuPfw)](https://codecov.io/github/bizon/amazon-ids)
[![XO code style](https://badgen.net/badge/code%20style/XO/cyan)](https://github.com/xojs/xo)
[![XO code style](https://img.shields.io/badge/code_style-xo-cyan)](https://github.com/xojs/xo)

[<img src="https://files.bizon.solutions/images/logo/bizon-horizontal.png" alt="Bizon" width="250"/>](https://www.bizon.solutions?utm_source=github&utm_medium=readme&utm_campaign=amazon-ids)

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -21,25 +21,25 @@
},
"types": "./dist/index.d.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"check:ts": "tsc --noEmit",
"build": "microbundle",
"dev": "microbundle watch"
},
"devDependencies": {
"@bizon/semantic-release-config": "^3.0.0",
"@bizon/semantic-release-config": "^3.0.2",
"@jest/types": "^29.6.3",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"eslint-config-xo-bizon": "^3.0.3",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"semantic-release": "^24.2.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"xo": "^0.59.3"
"typescript": "^5.7.3",
"xo": "^0.60.0"
},
"keywords": [
"amazon",
@@ -59,5 +59,5 @@
"release": {
"extends": "@bizon/semantic-release-config"
},
"packageManager": "pnpm@9.12.1+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
"packageManager": "pnpm@10.5.0+sha512.11106a5916c7406fe4b8cb8e3067974b8728f47308a4f5ac5e850304afa6f57e2847d7950dfe78877d8d36bfb401d381c4215db3a4c3547ffa63c14333a6fa51"
}
Loading