...
This commit is contained in:
20
.github/workflows/CreateRelease.yml
vendored
20
.github/workflows/CreateRelease.yml
vendored
@@ -90,16 +90,16 @@ jobs:
|
|||||||
git config --local user.email "actions@github.com"
|
git config --local user.email "actions@github.com"
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Create temporary branch
|
# - name: Create temporary branch
|
||||||
id: create_temp_branch
|
# id: create_temp_branch
|
||||||
if: steps.check_version.outputs.skip_release == 'false'
|
# if: steps.check_version.outputs.skip_release == 'false'
|
||||||
run: |
|
# run: |
|
||||||
git checkout --orphan release/v${{ env.VERSION }}
|
# git checkout --orphan release/v${{ env.VERSION }}
|
||||||
git reset
|
# git reset
|
||||||
rm -f .gitignore
|
# rm -f .gitignore
|
||||||
git add README.md package.json LICENSE dist/ src/ tsconfig.json
|
# git add README.md package.json LICENSE dist/ src/ tsconfig.json
|
||||||
git commit -m "Prepare files for release ${{ env.VERSION }}"
|
# git commit -m "Prepare files for release ${{ env.VERSION }}"
|
||||||
shell: bash
|
# shell: bash
|
||||||
|
|
||||||
- name: Create and push tag
|
- name: Create and push tag
|
||||||
id: create_tag
|
id: create_tag
|
||||||
|
@@ -1,11 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "ts-injex",
|
"name": "ts-injex",
|
||||||
"version": "0.0.10",
|
"version": "0.0.11",
|
||||||
"description": "Simple boilerplate code free dependency injection system for TypeScript.",
|
"description": "Simple boilerplate code free dependency injection system for TypeScript.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"prepare": "npm run build",
|
||||||
"build": "npm run build:tsc",
|
"build": "npm run build:tsc",
|
||||||
"build:tsc": "tsc",
|
"build:tsc": "tsc",
|
||||||
"lint": "eslint --ext .ts .",
|
"lint": "eslint --ext .ts .",
|
||||||
|
Reference in New Issue
Block a user