chore(): remove lerna & script cruft

This commit is contained in:
Christopher Hiller
2022-10-26 13:05:33 -07:00
parent ac67d871eb
commit 26dc2ff6a4
2 changed files with 9 additions and 11 deletions

View File

@@ -1,16 +1,15 @@
{
"command": {
"exec": {
"ignore": ["@appium/eslint-config-appium", "appium"]
},
"run": {
"prefix": false,
"concurrency": 1,
"concurrency": 8,
"stream": true
},
"version": {
"conventionalCommits": true,
"createRelease": "github"
"createRelease": "github",
"version": {
"allowBranch": "master"
}
},
"add": {
"exact": true

View File

@@ -28,7 +28,7 @@
],
"scripts": {
"build": "run-s build:distfiles build:types",
"build:distfiles": "lerna run --parallel --prefix --concurrency=8 build",
"build:distfiles": "lerna run build",
"build:types": "tsc -b",
"clean": "run-s clean:artifacts clean:packages clean:monorepo",
"clean:artifacts": "run-s clean:distfiles clean:types && npx rimraf \"packages/*/build\"",
@@ -37,7 +37,7 @@
"clean:packages": "lerna clean -y && npx rimraf \"packages/*/package-lock.json\"",
"clean:types": "tsc -b --clean",
"dev": "run-p dev:*",
"dev:distfiles": "lerna run --parallel --prefix --concurrency=8 dev",
"dev:distfiles": "lerna run dev",
"dev:types": "tsc -b --watch",
"doctor": "node ./packages/doctor",
"generate-docs": "lerna run --scope=appium generate-docs",
@@ -46,7 +46,7 @@
"lint:fix": "npm run lint -- --fix",
"precommit-lint": "lint-staged",
"precommit-msg": "echo 'Pre-commit checks...'",
"prepublishOnly": "run-s clean:artifacts build",
"prepublishOnly": "run-s clean:artifacts build sync-pkgs",
"reinstall": "run-p clean:artifacts clean:packages && npm ci",
"start": "appium",
"sync-pkgs": "run-p sync-pkgs:*",
@@ -57,10 +57,9 @@
"test": "run-s build test:unit lint",
"test:ci": "run-s test:smoke test:unit test:ci:e2e",
"test:ci:e2e": "lerna run test:e2e",
"test:e2e": "lerna run --parallel --max-buffer=128 test:e2e",
"test:e2e": "lerna run --max-buffer=128 test:e2e",
"test:smoke": "smoker --all test:smoke",
"test:unit": "lerna run test",
"uninstall-fake-driver": "npm start -- driver uninstall fake",
"upload": "gulp github-upload",
"preversion": "run-s clean:artifacts build sync-pkgs && git add -A packages/appium/README.md packages/*/package.json",
"zip": "zip -qr ./appium.zip ./packages/appium",