Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move github helpers to workspace-tools #2793

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,9 @@
"eo:build": "nx run app-eo:build:production",
"test": "nx run-many --target=test --parallel",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"take": "node --import tsx ./tools/github/create-branch-from-issue.ts",
"branch": "node --import tsx ./tools/github/create-branch.ts",
"pr": "node --import tsx ./tools/github/create-pr.ts",
"take": "node --import tsx ./workspace-tools/src/github/create-branch-from-issue.ts",
"branch": "node --import tsx ./workspace-tools/src/github/create-branch.ts",
"pr": "node --import tsx ./workspace-tools/src/github/create-pr.ts",
"task": "yarn run $(jq .scripts package.json | cut -d'\"' -f2 | fzf | xargs)"
},
"dependencies": {
Expand Down
1 change: 0 additions & 1 deletion tools/github/README.md

This file was deleted.

3 changes: 0 additions & 3 deletions tools/github/package.json

This file was deleted.

10 changes: 0 additions & 10 deletions tools/github/tsconfig.json

This file was deleted.

6 changes: 3 additions & 3 deletions workspace-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "workspace-tools",
"version": "0.0.1",
"type": "module",
"dependencies": {
"@nx/angular": "18.3.1",
"@nx/devkit": "18.3.1",
"tslib": "^2.3.0",
"ts-morph": "20.0.0",
"prettier": "3.2.5",
"@nx/angular": "18.3.1"
"inquirer": "9.2.19"
},
"type": "commonjs",
"main": "./src/index.js",
"typings": "./src/index.d.ts",
"generators": "./generators.json",
"executors": "./executors.json"
Expand Down
File renamed without changes.
16 changes: 0 additions & 16 deletions workspace-tools/src/index.ts

This file was deleted.

Loading