mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2025-06-08 03:36:37 +00:00
Release v1.0.6
This commit is contained in:
parent
8e14415dec
commit
b2417cde72
17 changed files with 1905 additions and 923 deletions
38
package.json
38
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "rust-toolchain",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.6",
|
||||
"private": false,
|
||||
"description": "Install the Rust toolchain",
|
||||
"main": "lib/main.js",
|
||||
|
@ -9,10 +9,12 @@
|
|||
"test": "__tests__"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "ncc build src/main.ts --minify",
|
||||
"watch": "ncc build src/main.ts --watch",
|
||||
"pretest": "git config core.hooksPath .githooks",
|
||||
"test": "jest"
|
||||
"build": "rm -rf ./dist/* && ncc build src/main.ts --minify",
|
||||
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
|
||||
"lint": "tsc --noEmit && eslint 'src/**/*.ts' '__tests__/**/*.ts'",
|
||||
"watch": "rm -rf ./dist/* && ncc build src/main.ts --watch",
|
||||
"test": "jest -c jest.config.json",
|
||||
"pretest": "git config core.hooksPath .githooks"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -30,21 +32,27 @@
|
|||
"url": "https://github.com/actions-rs/toolchain/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@actions-rs/core": "^0.0.8",
|
||||
"@actions/core": "^1.2.2",
|
||||
"@actions-rs/core": "^0.0.9",
|
||||
"@actions/core": "^1.2.3",
|
||||
"@actions/exec": "^1.0.3",
|
||||
"@actions/io": "^1.0.2",
|
||||
"npm-check-updates": "^4.0.1"
|
||||
"@actions/io": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"temp-write": "^4.0.0",
|
||||
"@types/jest": "^24.9.1",
|
||||
"@types/node": "^13.5.0",
|
||||
"@zeit/ncc": "^0.21.0",
|
||||
"@types/jest": "^25.1.4",
|
||||
"@types/node": "^13.9.3",
|
||||
"@typescript-eslint/eslint-plugin": "^2.25.0",
|
||||
"@typescript-eslint/parser": "^2.25.0",
|
||||
"@zeit/ncc": "^0.22.0",
|
||||
"eslint": "^6.8.0",
|
||||
"eslint-config-prettier": "^6.10.1",
|
||||
"eslint-plugin-prettier": "^3.1.2",
|
||||
"jest": "^25.1.0",
|
||||
"jest-circus": "^25.1.0",
|
||||
"mock-env": "^0.2.0",
|
||||
"ts-jest": "^25.0.0",
|
||||
"typescript": "^3.7.5"
|
||||
"npm-check-updates": "^4.0.5",
|
||||
"prettier": "^2.0.2",
|
||||
"temp-write": "^4.0.0",
|
||||
"ts-jest": "^25.2.1",
|
||||
"typescript": "^3.8.3"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue