feat: add after install script (#3161)

* feat: upgrade yarn to latest 3.x

* feat: adding plugin and after install script

* fix: husky mode

* feat: adding post merge hook

* style: alphabetically organizing scripts

* fix: yarn lock
This commit is contained in:
Matthew Hatcher
2023-10-29 14:37:09 +00:00
committed by GitHub
parent c460c88a84
commit dea4310e9f
10 changed files with 915 additions and 826 deletions
+14 -13
View File
@@ -8,22 +8,23 @@
],
"scripts": {
"build": "turbo run build",
"fmt": "turbo run fmt",
"build:doc": "typedoc --out ./website/docs/generated/ && node scripts/finalizeTypedocs.js",
"build:type": "turbo run build:type",
"release-build": "turbo run release-build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test:type": "turbo run build:type",
"test:unit-coverage": "turbo run test:unit-coverage",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:deno-unit": "turbo run test:deno-unit",
"test:bun-unit": "turbo run test:bun-unit",
"test:e2e": "turbo run test:e2e",
"test:test-type": "turbo run test:test-type",
"fmt": "turbo run fmt",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"prepare": "husky install",
"build:doc": "typedoc --out ./website/docs/generated/ && node scripts/finalizeTypedocs.js"
"release-build": "turbo run release-build",
"setup-dd": "husky install",
"test:bun-unit": "turbo run test:bun-unit",
"test:deno-unit": "turbo run test:deno-unit",
"test:e2e": "turbo run test:e2e",
"test:integration": "turbo run test:integration",
"test:test-type": "turbo run test:test-type",
"test:type": "turbo run build:type",
"test:unit": "turbo run test:unit",
"test:unit-coverage": "turbo run test:unit-coverage"
},
"devDependencies": {
"eslint": "^8.36.0",
@@ -45,7 +46,7 @@
"eslint --fix --config ./packages/eslint-config-discordeno/index.js --resolve-plugins-relative-to ."
]
},
"packageManager": "yarn@3.3.0",
"packageManager": "yarn@3.6.4",
"dependencies": {
"typedoc-plugin-missing-exports": "^1.0.0"
}