Skip to content

Commit

Permalink
qwe
Browse files Browse the repository at this point in the history
  • Loading branch information
twistezo committed Jul 30, 2023
1 parent 2e53db7 commit 100e15a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@ jobs:
- name: Setup environment
uses: ./.github/actions/setup

- name: Build & Lint & Unit tests
- name: Lint & Unit tests
run: npm run check

- name: Build
run: npm run build
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,15 @@
"url": "git+https://github.com/twistezo/ts-dto-mapper.git"
},
"scripts": {
"build": "npm run clean && tsc",
"build": "rimraf dist && tsc",
"check": "npm run lint && npm run test",
"clean": "rimraf dist",
"lint": "eslint src",
"postversion": "git push --follow-tags",
"publish": "npm run check && npm run build && npm publish && npm publish --registry=https://npm.pkg.github.com",
"prepublish": "npm run check && npm run build",
"publish:gh": "npm publish --registry=https://npm.pkg.github.com",
"publish:npm": "npm publish",
"test": "vitest run"
},
"types": "./dist/index.d.ts",
"version": "1.0.14"
"version": "1.0.15"
}

0 comments on commit 100e15a

Please sign in to comment.