|
29 | 29 | "author": "Tim Suchanek <suchanek@prisma.io>", |
30 | 30 | "license": "Apache-2.0", |
31 | 31 | "devDependencies": { |
| 32 | + "@expo/spawn-async": "1.4.0", |
32 | 33 | "@types/fs-extra": "^5.0.0", |
33 | 34 | "@types/node": "^8.0.22", |
34 | 35 | "aws-sdk": "^2.373.0", |
35 | 36 | "axios": "^0.18.0", |
36 | 37 | "dotenv-cli": "^1.4.0", |
37 | | - "git-commit-push-via-github-api": "^1.0.1", |
| 38 | + "git-commit-push-via-github-api": "1.0.1", |
38 | 39 | "husky": "^0.14.3", |
39 | 40 | "lint-staged": "^4.0.3", |
40 | 41 | "pkg": "^4.3.5", |
41 | 42 | "prettier": "1.14.3", |
| 43 | + "progress-estimator": "0.2.2", |
42 | 44 | "rimraf": "^2.6.1", |
| 45 | + "ts-node": "8.0.2", |
43 | 46 | "tslint": "^5.6.0", |
44 | 47 | "tslint-config-prettier": "^1.17.0", |
45 | 48 | "tslint-eslint-rules": "^5.4.0", |
|
48 | 51 | "scripts": { |
49 | 52 | "build": "rimraf dist && tsc -d && chmod +x dist/index.js", |
50 | 53 | "lint": "tslint src/**/*.ts", |
51 | | - "publish-homebrew": "dotenv -e scripts/.env ts-node ./scripts/release-brew.ts", |
52 | | - "make-binary": "npm run build && npm run package", |
| 54 | + "publish-macos": "dotenv -e scripts/.env ts-node ./scripts/release/macos.ts", |
| 55 | + "publish-linux": "dotenv -e scripts/.env ts-node ./scripts/release/linux.ts", |
| 56 | + "binary-macos": "npm run build && ./scripts/cp-assets.sh && dotenv -e scripts/.env ts-node ./scripts/release/pre-release.ts && pkg package.json --targets node10-macos-x64", |
| 57 | + "binary-linux": "npm run build && ./scripts/cp-assets.sh && dotenv -e scripts/.env ts-node ./scripts/release/pre-release.ts && pkg package.json --targets node10-linux-x64", |
53 | 58 | "precommit": "lint-staged", |
54 | 59 | "prettier": "prettier --single-quote --no-semi --trailing-comma all --write '*.ts' 'src/**/*.ts'", |
55 | | - "prepublishOnly": "npm run lint && npm run build", |
56 | | - "package": "./scripts/cp-assets.sh && pkg package.json --targets node10-macos-x64", |
57 | | - "package-linux": "./scripts/cp-assets.sh && pkg package.json --targets node10-linux-x64" |
| 60 | + "prepublishOnly": "npm run lint && npm run build" |
58 | 61 | }, |
59 | 62 | "cli-engine": { |
60 | 63 | "bin": "prisma", |
|
0 commit comments