Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: dependency update #15

Merged
merged 2 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 0 additions & 51 deletions .eslintrc.cjs

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Connect workflow to repository
uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.2
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2.4.0
with:
version: 7.7.1
version: 8.9.0
- name: Install all required dependencies
run: pnpm install
- name: Lint and test the files
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- name: Checkout to repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- run: git fetch --unshallow --tags
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v2.4.0
with:
version: 7.7.1
version: 8.9.0
- name: Install dependencies
run: pnpm install
- name: Lint and test the files
Expand Down
19 changes: 13 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
.editorconfig
.eslintrc.cjs
jest.config.ts
prettier.config.js
.github
.autorc
.editorconfig
.autorc

eslint.config.js
.eslintrc.cjs

vitest.config.ts

.github
tsconfig.json

CHANGELOG.md
src
3 changes: 3 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import config from '@namchee/eslint-config';

export default config;
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@namchee/telepon",
"version": "1.1.0",
"type": "module",
"description": "Sane and easy-to-use Indonesian phone number validator and formatter.",
"main": "./dist/index.js",
"exports": {
Expand Down Expand Up @@ -36,25 +37,24 @@
},
"license": "MIT",
"devDependencies": {
"@auto-it/conventional-commits": "^10.37.4",
"@auto-it/npm": "^10.37.4",
"@auto-it/conventional-commits": "^11.0.4",
"@auto-it/npm": "^11.0.4",
"@namchee/eslint-config": "^2.0.9",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"auto": "^10.37.4",
"eslint": "^7.19.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^31.6.1",
"tsup": "^6.2.2",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vitest": "^0.22.1"
"auto": "^11.0.4",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=14.16.0"
"node": ">=16",
"pnpm": ">=8",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
}
}
Loading
Loading