1
0
mirror of https://github.com/qntm/base1 synced 2026-03-20 04:44:40 +01:00

Compare commits

..

No commits in common. "a9ed43628b746e7f043296f47215aaccf0f87dc8" and "9057ed4e33590321f8b5493ad8831a7073aac310" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
node-version: ['24.x']
node-version: ['20.x', '22.x', '24.x']
steps:
- uses: 'actions/checkout@v2'

View File

@ -2,7 +2,7 @@
## 3.0.0
* Dropped support for Node.js prior to 24.
* Dropped support for Node.js prior to 20.
## 2.0.0

View File

@ -19,7 +19,7 @@
"A"
],
"scripts": {
"unit": "node --test --experimental-test-coverage --test-coverage-functions=100",
"unit": "node --test --experimental-test-coverage",
"standard": "standard",
"tag": "node -e \"require('child_process').spawn('git', ['tag', `v${require('./package.json').version}`], { stdio: 'inherit' })\"",
"tag-and-publish": "npm run tag && git push --tags && npm publish && npm version patch --no-git-tag-version && git add . && git commit -m \"Bump patch\" && git push",