Skip to content

Commit

Permalink
minor updates and migration to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
haakemon committed Jun 26, 2023
1 parent 9715328 commit ecb5310
Show file tree
Hide file tree
Showing 15 changed files with 2,173 additions and 4,907 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
name: Create and publish a Docker image

on:
workflow_dispatch:
release:
types: [published]

env:
REGISTRY: ghcr.io
Expand Down
541 changes: 0 additions & 541 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

This file was deleted.

768 changes: 0 additions & 768 deletions .yarn/releases/yarn-3.1.1.cjs

This file was deleted.

5 changes: 0 additions & 5 deletions .yarnrc.yml

This file was deleted.

5 changes: 5 additions & 0 deletions ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default {
extensions: {
ts: 'module',
},
};
21 changes: 8 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,26 @@
{
"name": "digitalocean-domain-record-ip-updater",
"version": "0.0.1",
"packageManager": "yarn@3.6.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"test": "ava --serial"
"test": "NODE_OPTIONS='--loader=tsx --no-warnings' ava --serial"
},
"dependencies": {
"got": "12.6.1"
"got": "13.0.0"
},
"devDependencies": {
"@types/sinon": "10.0.15",
"ava": "5.3.1",
"msw": "1.2.2",
"prettier": "2.8.8",
"sinon": "15.1.2",
"sinon": "15.2.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
"tsx": "^3.12.7",
"typescript": "5.1.3"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
"engines": {
"node": ">=20.0.0 <21.0.0",
"pnpm": ">=8.6.0 <9.0.0"
}
}

0 comments on commit ecb5310

Please sign in to comment.