Skip to content

Commit

Permalink
Merge pull request #15 from Namchee/chore/leaner-publish
Browse files Browse the repository at this point in the history
chore: dependency update
  • Loading branch information
Namchee committed Jan 27, 2024
2 parents 9f3474a + 01b05df commit 9e15a0d
Show file tree
Hide file tree
Showing 16 changed files with 2,899 additions and 1,452 deletions.
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

0 comments on commit 9e15a0d

Please sign in to comment.