refactor: run turbo pipe before publish

This commit is contained in:
braks
2022-10-10 21:33:44 +02:00
committed by Braks
parent 647d60583b
commit 32aa9e851b
5 changed files with 3 additions and 23 deletions
-9
View File
@@ -44,15 +44,6 @@ jobs:
- name: Install dependencies 👨🏻‍💻
run: pnpm install --no-frozen-lockfile
- name: Run linter 🧹
run: pnpm lint
- name: Build Library 👷
run: pnpm build
- name: Run tests 🧪
run: pnpm test
- name: Bump versions 🏷 and Publish 🚀
uses: changesets/action@v1
with:
+1 -2
View File
@@ -6,13 +6,12 @@
"dev": "pnpm --dir examples/vite dev",
"docs": "pnpm --dir docs dev",
"changelog": "git-cliff --output CHANGELOG.md && git add CHANGELOG.md && git commit -m \"chore: Update CHANGELOG.md\"",
"release": "turbo run release",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typedocs": "turbo run build && pnpm --dir docs typedocs",
"ci:version": "changeset version",
"ci:publish": "changeset publish"
"ci:publish": "turbo lint && turbo build && turbo test && changeset publish"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
+1 -3
View File
@@ -23,11 +23,9 @@
"build": "vite build",
"types": "pnpm prepare && vue-tsc --declaration --emitDeclarationOnly && shx rm -rf tmp",
"postbuild": "shx rm -rf tmp",
"prepublishOnly": "pnpm build",
"test": "exit 0;",
"lint:js": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix --ignore-path .gitignore .",
"lint": "pnpm lint:js",
"release": "pnpm publish"
"lint": "pnpm lint:js"
},
"dependencies": {
"pathfinding": "^0.4.18",
+1 -3
View File
@@ -23,11 +23,9 @@
"build": "vite build",
"types": "pnpm prepare && vue-tsc --declaration --emitDeclarationOnly && shx rm -rf tmp",
"postbuild": "shx rm -rf tmp",
"prepublishOnly": "pnpm build",
"test": "exit 0;",
"lint:js": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix --ignore-path .gitignore .",
"lint": "pnpm lint:js",
"release": "pnpm publish"
"lint": "pnpm lint:js"
},
"dependencies": {
"@vueuse/core": "^8.9.4",
-6
View File
@@ -24,12 +24,6 @@
"dev": {
"dependsOn": ["^build"],
"cache": false
},
"release": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
}
}
}