Include additional files in release and mark as prerelease

Added `src` folder and `tsconfig.json` to the release preparation to ensure all necessary files are included. Uncommented the deletion of the temporary branch to streamline the workflow. Set releases to be marked as prereleases automatically. Updated version in `package.json` to 0.0.5 and included a `files` field to specify which files to include in the package.
This commit is contained in:
2024-08-14 22:34:15 +02:00
parent de45d8e791
commit ad4a8fd8c6
2 changed files with 11 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "ts-injex",
"version": "0.0.4",
"version": "0.0.5",
"description": "",
"type": "module",
"main": "./dist/index.js",
@@ -36,5 +36,12 @@
"dependencies": {
"eslint-plugin-prettier": "^5.2.1",
"jest-environment-jsdom": "^29.7.0"
}
},
"files": [
"dist/**/*",
"src/**/*",
"README.md",
"LICENSE",
"package.json"
]
}