Skip to content

Commit

Permalink
Merge pull request #18 from depot/update-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwgillespie authored Aug 23, 2023
2 parents fe0bfb1 + abc9b12 commit 392599b
Show file tree
Hide file tree
Showing 7 changed files with 601 additions and 195 deletions.
8 changes: 0 additions & 8 deletions .prettierrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"npm.packageManager": "pnpm",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.tsdk": "node_modules/typescript/lib",
"prettier.prettierPath": "node_modules/prettier/index.js"
"prettier.prettierPath": "node_modules/prettier/index.cjs"
}
2 changes: 1 addition & 1 deletion build.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const esbuild = require('esbuild')
esbuild.build({
entryPoints: ['src/index.ts'],
bundle: true,
minify: true,
minify: false,
platform: 'node',
target: 'node16',
outfile: 'dist/index.js',
Expand Down
109 changes: 82 additions & 27 deletions dist/index.js

Large diffs are not rendered by default.

34 changes: 23 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"type": "module",
"private": true,
"scripts": {
"build": "node build.cjs",
Expand All @@ -10,20 +11,31 @@
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.1.0",
"@actions/http-client": "^2.1.1",
"@actions/io": "^1.1.3",
"@depot/actions-public-oidc-client": "^1.0.0",
"@docker/actions-toolkit": "^0.2.0",
"csv-parse": "^5.3.6",
"execa": "^7.1.1"
"@docker/actions-toolkit": "^0.8.0",
"csv-parse": "^5.4.0",
"execa": "^8.0.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "~18.15.5",
"esbuild": "^0.17.12",
"prettier": "^2.8.6",
"prettier-plugin-organize-imports": "^3.1.1",
"prettier-plugin-pkg": "^0.17.1",
"typescript": "^4.8.4"
"@tsconfig/node16": "^16.1.0",
"@types/node": "~20.5.1",
"esbuild": "^0.19.2",
"prettier": "^3.0.2",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": "^0.18.0",
"typescript": "^5.1.6"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"plugins": [
"prettier-plugin-pkg",
"prettier-plugin-organize-imports"
]
}
}
Loading

0 comments on commit 392599b

Please sign in to comment.