Refactored to use esbuild

This commit is contained in:
Corey Butler
2022-10-12 20:49:37 -05:00
parent a4acf0cff0
commit bacfccaa39
11 changed files with 29110 additions and 16 deletions

22
src/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "autotag-action",
"version": "1.1.3",
"private": true,
"description": "Automatically create a tag whenever the version changes in package.json",
"main": "lib/main.js",
"scripts": {
"start": "node ./main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/butlerlogic/action-autotag.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "ButlerLogic",
"license": "MIT",
"type": "module"
}