fix scripts

This commit is contained in:
OpportunityLiu
2020-03-20 22:53:43 +08:00
Unverified
parent f8bc635057
commit 470933beed
5 changed files with 29 additions and 20 deletions
+7 -4
View File
@@ -1,16 +1,19 @@
{
"name": "github-action-setup-xmake",
"version": "1.0.1",
"version": "1.0.3",
"description": "Set up your GitHub Actions workflow with a specific version of xmake",
"main": "dist/index.js",
"author": "OpportunityLiu",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/xmake-io/github-action-setup-xmake.git",
"homepage": "https://github.com/xmake-io/github-action-setup-xmake",
"scripts": {
"clean": "rimraf dist",
"init": "yarn install && yarn clean",
"watch": "tsc --watch",
"lint": "eslint --fix src/**/*",
"build": "tsc --build ./tsconfig.build.json",
"rebuild":"yarn clean && yarn build",
"rebuild": "yarn clean && yarn build",
"clean": "rimraf dist",
"lint": "eslint --fix src/**/*",
"test": "jest",
"release": "yarn rebuild && yarn lint && yarn install --production"
},