Skip to content

Commit

Permalink
fix: use pnp config
Browse files Browse the repository at this point in the history
  • Loading branch information
wopian committed Feb 14, 2023
1 parent 7a358e9 commit b4a4399
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"typescript.tsdk": "node_modules\\typescript\\lib",
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true
}
},
"eslint.nodePath": ".yarn/sdks",
"prettier.prettierPath": ".yarn/sdks/prettier/index.js",
"typescript.enablePromptUseWorkspaceTsdk": true
}
4 changes: 2 additions & 2 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ enableScripts: false
enableTelemetry: false
httpRetry: 3
httpTimeout: 60000
nmMode: classic
nodeLinker: node-modules
nmMode: hardlinks-global
nodeLinker: pnp
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: '@yarnpkg/plugin-workspace-tools'
Expand Down
45 changes: 43 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
# zeepkist-records-bot
# Discord Bot

Discord Bot for displaying Zeepkist records
A records and leaderboard bot for the [Zeepkist Discord server](https://discord.gg/zeepkist) using data from Zeepkist GTR.

## Recommended IDE Setup

[VSCode](https://code.visualstudio.com/)

## First-time Project Setup

```sh
yarn
yarn dlx @yarnpkg/sdks vscode
```

### Compile and Hot-Reload for Development

```sh
yarn dev
```

### Type-Check, Compile and Minify for Production

```sh
yarn build
```

### Lint with [ESLint](https://eslint.org/)

```sh
yarn lint
```

### Run Tests

```sh
yarn test
```

### Run Tests with Coverage

```sh
yarn coverage
```

0 comments on commit b4a4399

Please sign in to comment.