Skip to content

Commit

Permalink
remove prepare script for faster ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cstrnt committed Dec 6, 2023
1 parent 1e5c164 commit 1058da5
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 15 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ _TL;DR:_
```
git clone [email protected]:tryabby/abby.git
pnpm i
pnpm build:packages
pnpm db:start
cp apps/web/.env.example apps/web/.env
pnpm db:migrate
Expand Down
5 changes: 2 additions & 3 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
"start": "ng serve",
"build": "ng-packagr -p ng-package.json",
"watch": "ng build --watch --configuration development",
"test": "ng test --no-watch --no-progress",
"prepare": "pnpm run build"
"test": "ng test --no-watch --no-progress"
},
"peerDependencies": {
"@angular/common": "^15.2.0",
Expand Down Expand Up @@ -54,4 +53,4 @@
"zone.js": "~0.12.0"
},
"sideEffects": false
}
}
5 changes: 2 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
"scripts": {
"build": "tsup src/",
"dev": "pnpm run build --watch",
"test": "vitest",
"prepare": "pnpm run build"
"test": "vitest"
},
"keywords": [],
"author": "",
Expand All @@ -46,4 +45,4 @@
"dependencies": {
"ts-toolbelt": "^9.6.0"
}
}
}
5 changes: 2 additions & 3 deletions packages/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"storybook": "STORYBOOK=1 storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "pnpm run build"
"build-storybook": "storybook build"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.5",
Expand Down Expand Up @@ -51,4 +50,4 @@
"monaco-editor": "^0.39.0",
"mousetrap": "^1.6.5"
}
}
}
12 changes: 9 additions & 3 deletions packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@
"files": [
"dist"
],
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"build": "tsup src/index.tsx",
"dev": "pnpm run build --watch",
"test": "vitest",
"prepare": "pnpm run build"
"test": "vitest"
},
"keywords": [],
"author": "",
Expand Down Expand Up @@ -47,4 +53,4 @@
"js-cookie": "^3.0.1",
"ts-toolbelt": "^9.6.0"
}
}
}
12 changes: 9 additions & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@
"files": [
"dist"
],
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"build": "tsup src/",
"dev": "pnpm run build --watch",
"test": "vitest",
"prepare": "pnpm run build"
"test": "vitest"
},
"homepage": "https://docs.tryabby.com",
"keywords": [],
Expand Down Expand Up @@ -45,4 +51,4 @@
"js-cookie": "^3.0.1",
"ts-toolbelt": "^9.6.0"
}
}
}

2 comments on commit 1058da5

@vercel
Copy link

@vercel vercel bot commented on 1058da5 Dec 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 1058da5 Dec 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.