Skip to content

Commit

Permalink
refactor: remove changelog scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
samarmeena committed Jun 15, 2024
1 parent c56c71c commit 316a764
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 13 deletions.
1 change: 0 additions & 1 deletion 1-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"main": "build/main.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "node --loader ts-node/esm/transpile-only src/main.ts",
"start": "node build/main.js",
"watch": "nodemon --exec npm run dev --watch src --ext ts"
Expand Down
1 change: 0 additions & 1 deletion 2-blank/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"main": "build/main.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "node --loader ts-node/esm/transpile-only src/main.ts",
"start": "node build/main.js",
"watch": "nodemon --exec npm run dev --watch src --ext ts"
Expand Down
1 change: 0 additions & 1 deletion 3-hot-module-reload/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"main": "build/main.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "node --loader ts-node/esm/transpile-only src/dev.ts",
"start": "node build/main.js"
},
Expand Down
1 change: 0 additions & 1 deletion 4-music-player-ytdl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"type": "module",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "node --loader ts-node/esm/transpile-only src/main.ts",
"start": "node build/main.js",
"watch": "nodemon --exec npm run dev --watch src --ext ts"
Expand Down
1 change: 0 additions & 1 deletion 5-music-player-lavalink/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"main": "build/main.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "node --loader ts-node/esm/transpile-only src/main.ts",
"start": "node build/main.js",
"watch": "nodemon --exec npm run dev --watch src --ext ts"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "discordx",
"version": "0.0.0",
"private": true,
"packageManager": "npm@7.0.0",
"workspaces": [
"**/*"
],
Expand Down Expand Up @@ -32,7 +33,6 @@
],
"scripts": {
"build": "turbo run build --parallel",
"build:changelog": "npm run build:changelog:docs && turbo run build:changelog --parallel",
"fix:prettier": "prettier --write .",
"prettier": "prettier --check .",
"lint": "eslint ./",
Expand Down
9 changes: 2 additions & 7 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
{
"pipeline": {
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["build/**"]
},
"build:changelog": {
"dependsOn": ["^build:changelog"]
},
"test": {
"dependsOn": ["^test"]
}
}
}

0 comments on commit 316a764

Please sign in to comment.