Skip to content

Commit

Permalink
fix: cleanup yarn stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
cecilia-sanare committed Apr 10, 2024
1 parent d9c88d4 commit f285f94
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 24 deletions.
4 changes: 0 additions & 4 deletions .gitattributes

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- run: bun ci

- name: Lint
run: yarn lint
run: bun run lint

test:
name: Test
Expand All @@ -51,7 +51,7 @@ jobs:
- run: bun ci

- name: Coverage
run: yarn run test:coverage
run: bun run test:coverage

- name: Coveralls
uses: coverallsapp/github-action@master
Expand All @@ -72,7 +72,7 @@ jobs:
- run: bun ci

- name: Build
run: yarn run build
run: bun run build

deploy:
name: Deploy
Expand Down
8 changes: 0 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,3 @@ node_modules/
.DS_Store
coverage/
dist/

.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
7 changes: 0 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,6 @@
"fileMatch": ["site.webmanifest"]
}
],
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true
},
"eslint.nodePath": ".yarn/sdks",
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnPaste": false,
"editor.formatOnType": false,
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ Then this is the perfect place for you!
- Install the Dependencies

```sh
$ yarn
$ bun ci
```

## Start the Server~

The app should startup at http://localhost:1234!

```sh
$ yarn start
$ bun start
```

0 comments on commit f285f94

Please sign in to comment.