Skip to content

Commit

Permalink
build: use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Beraliv committed Dec 8, 2024
1 parent 5b65b11 commit bed06d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-ts-conversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: ./.github/actions/cache-node-modules

- name: Install dependencies
run: pnpm install
run: npm install

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand All @@ -30,7 +30,7 @@ jobs:
aws-region: eu-central-1

- name: Build
run: pnpm --filter ts-conversion run build
run: npm run build

- name: Deploy to AWS S3
run: aws s3 sync ./packages/ts-conversion/dist s3://ts-conversion.beraliv.com --delete
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ Try it now: https://ts-conversion.beraliv.com

## Quick start

This project is part of pnpm workspaces.

To install all dependencies, run the install command:

```bash
pnpm install
npm install
```

To start developing the project, run the dev command:

```bash
pnpm --filter ts-conversion run dev --host
npm run dev --host
```

0 comments on commit bed06d8

Please sign in to comment.