Skip to content

Commit

Permalink
chore: minor fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Sarthak Jain <jsarthak448@gmail.com>
  • Loading branch information
sarthakjdev committed Sep 9, 2023
1 parent 4106f35 commit 4c03d8a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 18 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
name: Build

on:
push:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@
],
"private": true,
"scripts": {
"build": "turbo build",
"build": "turbo build --concurrency=2",
"watch": "tsc --pretty -w",
"lint": "turbo run lint",
"lint": "turbo run lint --concurrency=2",
"prepare": "husky install",
"pretty": "turbo pretty",
"clean-install": "turbo run clean-install",
"install": "turbo run install"
"pretty": "turbo pretty --concurrency=2",
"clean-install": "turbo run clean-install"
},
"keywords": [
"whatsapp-cloud-api",
Expand Down
5 changes: 2 additions & 3 deletions packages/component-generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@
"main": "index.js",
"scripts": {
"test": "vitest run",
"build": "tsc --pretty",
"build": "yarn tsc --pretty",
"lint": "yarn eslint . --max-warnings=0",
"pretty": "prettier --config ../../.prettierrc.js --write ./src/**/**/**/**/**/**/**/**/**/**/**/**/**/*.{ts}",
"clean-install": "rm -rf ./node_modules && yarn --frozen-lockfile",
"install": "yarn install --frozen-lockfile"
"clean-install": "rm -rf ./node_modules && yarn install --frozen-lockfile"
},
"keywords": [],
"author": "",
Expand Down
8 changes: 0 additions & 8 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"install": {
"cache": false,
"outputMode": "errors-only"
},
"build": {
"cache": false,
"dependsOn": [
Expand Down Expand Up @@ -45,10 +41,6 @@
],
"outputMode": "errors-only"
},
"clean-install": {
"cache": false,
"outputMode": "errors-only"
},
"dev": {
"cache": false,
"persistent": true
Expand Down

0 comments on commit 4c03d8a

Please sign in to comment.