Skip to content

Commit

Permalink
chore: 🤖 remove extra files that are not needed (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy-guzman authored Apr 6, 2024
1 parent 2f34b00 commit fe16d52
Show file tree
Hide file tree
Showing 6 changed files with 223 additions and 208 deletions.
10 changes: 0 additions & 10 deletions .eslintignore

This file was deleted.

5 changes: 0 additions & 5 deletions .github/actions/check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,3 @@ runs:
- name: ✅ Coverage
shell: bash
run: pnpm coverage

- name: ✅ Report Coverage
uses: codecov/codecov-action@v4
with:
file: ./coverage/coverage-final.json
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,14 @@
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/jimmy-guzman/ts-starter/cd.yml?style=flat-square&logo=github-actions)
[![version](https://img.shields.io/npm/v/ts-starter.svg?logo=npm&style=flat-square)](https://www.npmjs.com/package/ts-starter)
[![downloads](https://img.shields.io/npm/dm/ts-starter.svg?logo=npm&style=flat-square)](http://www.npmtrends.com/ts-starter)
[![Code Coverage](https://img.shields.io/codecov/c/github/jimmy-guzman/ts-starter.svg?style=flat-square&logo=codecov)](https://codecov.io/github/jimmy-guzman/ts-starter)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://semantic-release.gitbook.io/semantic-release)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square&logo=prettier)](https://github.com/prettier/prettier)

> 🍱 another opinionated TypeScript library starter
## 🛠️ Usage

- You can either [use this template](https://github.com/jimmy-guzman/ts-starter/generate) or use [tiged](https://github.com/tiged/tiged), by running `npx tiged jimmy-guzman/ts-starter`
- You can either [use this template](https://github.com/jimmy-guzman/ts-starter/generate) or use [tiged](https://github.com/tiged/tiged), by running `pnpm dlx tiged jimmy-guzman/ts-starter`
- [create a `NPM_TOKEN`](https://docs.npmjs.com/about-access-tokens) and add `NPM_TOKEN` as [repository secret](https://docs.github.com/en/actions/reference/encrypted-secrets#creating-encrypted-secrets-for-a-repository)
- [create codecov account](https://docs.codecov.io/docs/quick-start)
- replace `ts-starter` and `jimmy-guzman`
- remove `--dry-run` from `.github/workflows/cd.yml`
20 changes: 8 additions & 12 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"version": "0.2",
"words": [
"cicd",
"Codecov",
"commitlint",
"commitlintrc",
"corepack",
Expand All @@ -15,11 +14,8 @@
"lcov",
"lefthook",
"nvmrc",
"OSTYPE",
"Parens",
"pkgroll",
"pnpm",
"prebuild",
"shellcheck",
"streetsidesoftware",
"tiged",
Expand All @@ -28,14 +24,14 @@
"wagoid"
],
"ignorePaths": [
"node_modules", // this will ignore anything the node_modules directory
"**/node_modules", // the same for this one
"**/node_modules/**", // the same for this one
"node_modules/**", // Doesn't currently work due to how the current working directory is determined.
"vscode-extension", //
".git", // Ignore the .git directory
"*.dll", // Ignore all .dll files.
"**/*.dll", // Ignore all .dll files,
"node_modules",
"**/node_modules",
"**/node_modules/**",
"node_modules/**",
"vscode-extension",
".git",
"*.dll",
"**/*.dll",
"yarn.lock",
"pnpm-lock.yaml"
]
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.0",
"@semantic-release/release-notes-generator": "13.0.0",
"@types/node": "20.12.2",
"@types/node": "20.12.4",
"@vitest/coverage-v8": "1.4.0",
"clean-pkg-json": "1.2.0",
"commitlint": "19.2.1",
"eslint": "8.57.0",
"eslint-config-jimmy-guzman": "14.1.0",
"gitzy": "5.2.0",
"is-ci": "3.0.1",
"lefthook": "1.6.7",
"lefthook": "1.6.8",
"pkgroll": "2.0.2",
"prettier": "3.2.5",
"semantic-release": "23.0.6",
"typescript": "5.4.3",
"semantic-release": "23.0.7",
"typescript": "5.4.4",
"vitest": "1.4.0"
},
"packageManager": "pnpm@8.15.6",
Expand Down
Loading

0 comments on commit fe16d52

Please sign in to comment.