Skip to content

Commit

Permalink
chore: remove build from prepack into ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dkundel committed Jan 18, 2023
1 parent 2b278a1 commit 9211e97
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/on-merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ jobs:
npm i -g npm@8
- name: Install Dependencies
run: npm install
- name: Run basic build
run: npm run bootstrap
- name: Setup CI Git User
run: |
git config user.name twilio-labs-ci
git config user.email [email protected]
- name: Create new build
run: |
npm run clean
npm run build
- name: "Create Pull Request or Publish to npm"
uses: changesets/action@v1
with:
Expand Down
3 changes: 1 addition & 2 deletions packages/runtime-handler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@
"build": "tsc",
"watch": "tsc --watch",
"build:noemit": "tsc --noEmit",
"clean": "rimraf ./dist",
"prepack": "run-s clean build"
"clean": "rimraf ./dist"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
Expand Down
3 changes: 1 addition & 2 deletions packages/serverless-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"watch": "tsc --watch",
"build:noemit": "tsc --noEmit",
"docs": "typedoc --options typedoc.json",
"clean": "rimraf ./dist",
"prepack": "run-s clean build"
"clean": "rimraf ./dist"
},
"publishConfig": {
"access": "public"
Expand Down
3 changes: 1 addition & 2 deletions packages/twilio-run/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"build:noemit": "tsc --noEmit",
"prepack": "run-s clean build"
"build:noemit": "tsc --noEmit"
},
"keywords": [
"twilio",
Expand Down

0 comments on commit 9211e97

Please sign in to comment.